blob: bdd27eef64d4343420af07d0ba859c75b55e9d16 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
/*-------------------------------------------------------------------------
*
* pthread-win32.c
* partial pthread implementation for win32
*
* Copyright (c) 2004-2005, PostgreSQL Global Development Group
* IDENTIFICATION
* $PostgreSQL: pgsql/src/interfaces/libpq/pthread-win32.c,v 1.4.4.1 2005/04/29 13:42:24 momjian Exp $
*
*-------------------------------------------------------------------------
*/
#include <windows.h>
#include "pthread.h"
HANDLE
pthread_self()
{
return GetCurrentThread();
}
void
pthread_setspecific(pthread_key_t key, void *val)
{
}
void *
pthread_getspecific(pthread_key_t key)
{
return NULL;
}
void
pthread_mutex_init(pthread_mutex_t *mp, void *attr)
{
*mp = CreateMutex(0, 0, 0);
}
void
pthread_mutex_lock(pthread_mutex_t *mp)
{
WaitForSingleObject(*mp, INFINITE);
}
void
pthread_mutex_unlock(pthread_mutex_t *mp)
{
ReleaseMutex(*mp);
}
|