mirror of
https://github.com/simtactics/niotso.git
synced 2025-10-16 20:03:30 -04:00
work in progress, cleaned up the directories and split them up into folder which make more sense, Still need to compile libvitaboy and all the tools
This commit is contained in:
parent
66ce473514
commit
948bd8474c
1786 changed files with 571812 additions and 15332 deletions
61
deps/libpq/pthread-win32.c
vendored
Normal file
61
deps/libpq/pthread-win32.c
vendored
Normal file
|
@ -0,0 +1,61 @@
|
|||
/*-------------------------------------------------------------------------
|
||||
*
|
||||
* pthread-win32.c
|
||||
* partial pthread implementation for win32
|
||||
*
|
||||
* Copyright (c) 2004-2011, PostgreSQL Global Development Group
|
||||
* IDENTIFICATION
|
||||
* src/interfaces/libpq/pthread-win32.c
|
||||
*
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
|
||||
#include "postgres_fe.h"
|
||||
|
||||
#include <windows.h>
|
||||
#include "pthread-win32.h"
|
||||
|
||||
DWORD
|
||||
pthread_self(void)
|
||||
{
|
||||
return GetCurrentThreadId();
|
||||
}
|
||||
|
||||
void
|
||||
pthread_setspecific(pthread_key_t key, void *val)
|
||||
{
|
||||
}
|
||||
|
||||
void *
|
||||
pthread_getspecific(pthread_key_t key)
|
||||
{
|
||||
return NULL;
|
||||
}
|
||||
|
||||
int
|
||||
pthread_mutex_init(pthread_mutex_t *mp, void *attr)
|
||||
{
|
||||
*mp = (CRITICAL_SECTION *) malloc(sizeof(CRITICAL_SECTION));
|
||||
if (!*mp)
|
||||
return 1;
|
||||
InitializeCriticalSection(*mp);
|
||||
return 0;
|
||||
}
|
||||
|
||||
int
|
||||
pthread_mutex_lock(pthread_mutex_t *mp)
|
||||
{
|
||||
if (!*mp)
|
||||
return 1;
|
||||
EnterCriticalSection(*mp);
|
||||
return 0;
|
||||
}
|
||||
|
||||
int
|
||||
pthread_mutex_unlock(pthread_mutex_t *mp)
|
||||
{
|
||||
if (!*mp)
|
||||
return 1;
|
||||
LeaveCriticalSection(*mp);
|
||||
return 0;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue