|
HANDLE | anonymous_namespace{wpthread.cpp}::HANDLE_from_pthread (pthread_t p) |
|
pthread_t | anonymous_namespace{wpthread.cpp}::pthread_from_HANDLE (HANDLE h) |
|
HANDLE | anonymous_namespace{wpthread.cpp}::GenerateCurrentThreadUniqueHandle () |
|
HANDLE | anonymous_namespace{wpthread.cpp}::GetCurrentThreadUniqueHandle () |
|
int | pthread_equal (pthread_t t1, pthread_t t2) |
|
pthread_t | pthread_self () |
|
int | pthread_getschedparam (pthread_t thread, int *policy, struct sched_param *param) |
|
int | pthread_setschedparam (pthread_t thread, int policy, const struct sched_param *param) |
|
int | pthread_key_create (pthread_key_t *key, void(*dtor)(void *)) |
|
int | pthread_key_delete (pthread_key_t key) |
|
void * | pthread_getspecific (pthread_key_t key) |
|
int | pthread_setspecific (pthread_key_t key, const void *value) |
|
static void | call_tls_dtors () |
|
int | pthread_mutexattr_init (pthread_mutexattr_t *attr) |
|
int | pthread_mutexattr_destroy (pthread_mutexattr_t *attr) |
|
int | pthread_mutexattr_gettype (const pthread_mutexattr_t *attr, int *type) |
|
int | pthread_mutexattr_settype (pthread_mutexattr_t *attr, int type) |
|
static CRITICAL_SECTION * | CRITICAL_SECTION_from_pthread_mutex_t (pthread_mutex_t *m) |
|
pthread_mutex_t | pthread_mutex_initializer () |
|
int | pthread_mutex_destroy (pthread_mutex_t *m) |
|
int | pthread_mutex_init (pthread_mutex_t *m, const pthread_mutexattr_t *) |
|
int | pthread_mutex_lock (pthread_mutex_t *m) |
|
int | pthread_mutex_trylock (pthread_mutex_t *m) |
|
int | pthread_mutex_unlock (pthread_mutex_t *m) |
|
int | pthread_mutex_timedlock (pthread_mutex_t *m, const struct timespec *abs_timeout) |
|
static HANDLE | HANDLE_from_sem_t (sem_t *sem) |
|
sem_t * | sem_open (const char *name, int oflag,...) |
|
int | sem_close (sem_t *sem) |
|
int | sem_unlink (const char *name) |
|
int | sem_init (sem_t *sem, int pshared, unsigned value) |
|
int | sem_destroy (sem_t *sem) |
|
int | sem_post (sem_t *sem) |
|
int | sem_wait (sem_t *sem) |
|
int | sem_msgwait_np (sem_t *sem) |
|
static unsigned __stdcall | thread_start (void *param) |
|
int | pthread_create (pthread_t *thread_id, const void *attr, void *(*func)(void *), void *arg) |
|
int | pthread_cancel (pthread_t thread) |
|
int | pthread_join (pthread_t thread, void **value_ptr) |
|