PostgreSQL Source Code git master
Loading...
Searching...
No Matches
pthread-win32.h
Go to the documentation of this file.
1/*
2 * src/port/pthread-win32.h
3 */
4#ifndef __PTHREAD_H
5#define __PTHREAD_H
6
8
9typedef struct pthread_mutex_t
10{
11 /* initstate = 0: not initialized; 1: init done; 2: init in progress */
15
16#define PTHREAD_MUTEX_INITIALIZER { 0 }
17
18typedef int pthread_once_t;
19
21
24
25int pthread_mutex_init(pthread_mutex_t *, void *attr);
27
28/* blocking */
30
31#endif
static int fb(int x)
int pthread_mutex_unlock(pthread_mutex_t *)
int pthread_mutex_init(pthread_mutex_t *, void *attr)
void * pthread_getspecific(pthread_key_t)
ULONG pthread_key_t
int pthread_once_t
int pthread_mutex_lock(pthread_mutex_t *)
void pthread_setspecific(pthread_key_t, void *)
DWORD pthread_self(void)
CRITICAL_SECTION csection