w32pthreads.h File Reference

w32threads to pthreads wrapper More...

#include <windows.h>
#include <process.h>
#include "libavutil/internal.h"
#include "libavutil/mem.h"

Go to the source code of this file.

Data Structures

struct  pthread_t
 
struct  pthread_cond_t
 
struct  win32_cond_t
 

Macros

#define WIN32_LEAN_AND_MEAN
 

Typedefs

typedef struct pthread_t pthread_t
 
typedef CRITICAL_SECTION pthread_mutex_t
 
typedef struct pthread_cond_t pthread_cond_t
 
typedef struct win32_cond_t win32_cond_t
 

Functions

static void (WINAPI *cond_broadcast)(pthread_cond_t *cond)
 
static BOOL (WINAPI *cond_wait)(pthread_cond_t *cond
 
static unsigned __stdcall
attribute_align_arg 
win32thread_worker (void *arg)
 
static int pthread_create (pthread_t *thread, const void *unused_attr, void *(*start_routine)(void *), void *arg)
 
static void pthread_join (pthread_t thread, void **value_ptr)
 
static int pthread_mutex_init (pthread_mutex_t *m, void *attr)
 
static int pthread_mutex_destroy (pthread_mutex_t *m)
 
static int pthread_mutex_lock (pthread_mutex_t *m)
 
static int pthread_mutex_unlock (pthread_mutex_t *m)
 
static void pthread_cond_init (pthread_cond_t *cond, const void *unused_attr)
 
static void pthread_cond_destroy (pthread_cond_t *cond)
 
static void pthread_cond_broadcast (pthread_cond_t *cond)
 
static int pthread_cond_wait (pthread_cond_t *cond, pthread_mutex_t *mutex)
 
static void pthread_cond_signal (pthread_cond_t *cond)
 
static void w32thread_init (void)
 

Variables

static pthread_mutex_tmutex
 
static pthread_mutex_t DWORD milliseconds
 

Detailed Description

w32threads to pthreads wrapper

Definition in file w32pthreads.h.

Macro Definition Documentation

#define WIN32_LEAN_AND_MEAN

Definition at line 38 of file w32pthreads.h.

Typedef Documentation

typedef CRITICAL_SECTION pthread_mutex_t

Definition at line 54 of file w32pthreads.h.

typedef struct pthread_t pthread_t
typedef struct win32_cond_t win32_cond_t

Function Documentation

static BOOL ( WINAPI *  cond_wait)
static

Referenced by av_get_random_seed().

static void pthread_cond_broadcast ( pthread_cond_t cond)
static
static void pthread_cond_destroy ( pthread_cond_t cond)
static

Definition at line 153 of file w32pthreads.h.

Referenced by frame_thread_free(), free_buffers(), and thread_free().

static void pthread_cond_init ( pthread_cond_t cond,
const void unused_attr 
)
static

Definition at line 129 of file w32pthreads.h.

Referenced by frame_thread_init(), thread_init(), and update_dimensions().

static void pthread_cond_signal ( pthread_cond_t cond)
static
static int pthread_create ( pthread_t thread,
const void unused_attr,
void *(*)(void *)  start_routine,
void arg 
)
static

Definition at line 77 of file w32pthreads.h.

Referenced by frame_thread_init(), and thread_init().

static void pthread_join ( pthread_t  thread,
void **  value_ptr 
)
static

Definition at line 87 of file w32pthreads.h.

Referenced by frame_thread_free(), and thread_free().

static int pthread_mutex_destroy ( pthread_mutex_t m)
inlinestatic
static int pthread_mutex_init ( pthread_mutex_t m,
void attr 
)
inlinestatic
static void w32thread_init ( void  )
static

Definition at line 257 of file w32pthreads.h.

Referenced by ff_thread_init().

static unsigned __stdcall attribute_align_arg win32thread_worker ( void arg)
static

Definition at line 70 of file w32pthreads.h.

Referenced by pthread_create().

Variable Documentation

pthread_mutex_t DWORD milliseconds

Definition at line 67 of file w32pthreads.h.

Definition at line 67 of file w32pthreads.h.