mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-16 06:05:58 -06:00
51 lines
907 B
C
51 lines
907 B
C
/*-------------------------------------------------------------------------
|
|
*
|
|
* pthread-win32.c
|
|
* partial pthread implementation for win32
|
|
*
|
|
* Copyright (c) 2004-2006, PostgreSQL Global Development Group
|
|
* IDENTIFICATION
|
|
* $PostgreSQL: pgsql/src/interfaces/libpq/pthread-win32.c,v 1.12 2006/07/29 15:22:27 momjian Exp $
|
|
*
|
|
*-------------------------------------------------------------------------
|
|
*/
|
|
|
|
#include "postgres_fe.h"
|
|
|
|
#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);
|
|
}
|