PostgreSQL Source Code
git master
|
Go to the source code of this file.
Functions | |
DWORD | pthread_self (void) |
void | pthread_setspecific (pthread_key_t key, void *val) |
void * | pthread_getspecific (pthread_key_t key) |
int | pthread_mutex_init (pthread_mutex_t *mp, void *attr) |
int | pthread_mutex_lock (pthread_mutex_t *mp) |
int | pthread_mutex_unlock (pthread_mutex_t *mp) |
void* pthread_getspecific | ( | pthread_key_t | key | ) |
Definition at line 29 of file pthread-win32.c.
Referenced by ecpg_finish(), ecpg_get_connection(), ecpg_get_connection_nr(), ECPGget_sqlca(), get_auto_allocs(), and get_descriptors().
int pthread_mutex_init | ( | pthread_mutex_t * | mp, |
void * | attr | ||
) |
Definition at line 35 of file pthread-win32.c.
References pthread_mutex_t::initstate.
Referenced by pthread_barrier_init().
int pthread_mutex_lock | ( | pthread_mutex_t * | mp | ) |
Definition at line 42 of file pthread-win32.c.
References pthread_mutex_t::csection, and pthread_mutex_t::initstate.
Referenced by default_threadlock(), ecpg_get_connection(), ecpg_log(), ECPGconnect(), ECPGdebug(), ECPGdisconnect(), my_BIO_s_socket(), and pthread_barrier_wait().
int pthread_mutex_unlock | ( | pthread_mutex_t * | mp | ) |
Definition at line 60 of file pthread-win32.c.
References pthread_mutex_t::csection, and pthread_mutex_t::initstate.
Referenced by default_threadlock(), ecpg_get_connection(), ecpg_log(), ECPGconnect(), ECPGdebug(), ECPGdisconnect(), my_BIO_s_socket(), and pthread_barrier_wait().
DWORD pthread_self | ( | void | ) |
Definition at line 18 of file pthread-win32.c.
void pthread_setspecific | ( | pthread_key_t | key, |
void * | val | ||
) |
Definition at line 24 of file pthread-win32.c.
Referenced by ecpg_finish(), ECPGconnect(), ECPGget_sqlca(), ECPGsetconn(), set_auto_allocs(), and set_descriptors().