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(), and ECPGget_sqlca().
int pthread_mutex_init | ( | pthread_mutex_t * | mp, |
void * | attr | ||
) |
Definition at line 35 of file pthread-win32.c.
References malloc.
Referenced by default_threadlock(), pgtls_init(), and pthread_barrier_init().
int pthread_mutex_lock | ( | pthread_mutex_t * | mp | ) |
Definition at line 45 of file pthread-win32.c.
Referenced by default_threadlock(), destroy_ssl_system(), ecpg_get_connection(), ecpg_log(), ECPGconnect(), ECPGdebug(), ECPGdisconnect(), pgtls_init(), and pthread_barrier_wait().
int pthread_mutex_unlock | ( | pthread_mutex_t * | mp | ) |
Definition at line 54 of file pthread-win32.c.
Referenced by default_threadlock(), destroy_ssl_system(), ecpg_get_connection(), ecpg_log(), ECPGconnect(), ECPGdebug(), ECPGdisconnect(), pgtls_init(), 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(), and ECPGsetconn().