mirror of
https://github.com/postgres/postgres.git
synced 2026-04-15 22:10:45 -04:00
50 lines
882 B
C
50 lines
882 B
C
/*-------------------------------------------------------------------------
|
|
*
|
|
* 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.10 2005/08/28 21:42:28 momjian Exp $
|
|
*
|
|
*-------------------------------------------------------------------------
|
|
*/
|
|
|
|
|
|
#include <windows.h>
|
|
#include "pthread-win32.h"
|
|
|
|
DWORD
|
|
pthread_self()
|
|
{
|
|
return GetCurrentThreadId();
|
|
}
|
|
|
|
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);
|
|
}
|