mirror of
https://github.com/postgres/postgres.git
synced 2025-08-24 09:27:52 +03:00
Pgindent run for 8.0.
This commit is contained in:
@@ -1,11 +1,11 @@
|
||||
/*-------------------------------------------------------------------------
|
||||
*
|
||||
* pthread-win32.c
|
||||
* partial pthread implementation for win32
|
||||
* partial pthread implementation for win32
|
||||
*
|
||||
* Copyright (c) 2004, PostgreSQL Global Development Group
|
||||
* IDENTIFICATION
|
||||
* $PostgreSQL: pgsql/src/interfaces/libpq/pthread-win32.c,v 1.1 2004/06/19 04:22:17 momjian Exp $
|
||||
* $PostgreSQL: pgsql/src/interfaces/libpq/pthread-win32.c,v 1.2 2004/08/29 05:07:00 momjian Exp $
|
||||
*
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
@@ -14,31 +14,37 @@
|
||||
#include "windows.h"
|
||||
#include "pthread.h"
|
||||
|
||||
HANDLE pthread_self()
|
||||
HANDLE
|
||||
pthread_self()
|
||||
{
|
||||
return GetCurrentThread();
|
||||
return GetCurrentThread();
|
||||
}
|
||||
|
||||
void pthread_setspecific(pthread_key_t key, void *val)
|
||||
void
|
||||
pthread_setspecific(pthread_key_t key, void *val)
|
||||
{
|
||||
}
|
||||
|
||||
void *pthread_getspecific(pthread_key_t key)
|
||||
void *
|
||||
pthread_getspecific(pthread_key_t key)
|
||||
{
|
||||
return NULL;
|
||||
return NULL;
|
||||
}
|
||||
|
||||
void pthread_mutex_init(pthread_mutex_t *mp, void *attr)
|
||||
void
|
||||
pthread_mutex_init(pthread_mutex_t *mp, void *attr)
|
||||
{
|
||||
*mp = CreateMutex(0, 0, 0);
|
||||
*mp = CreateMutex(0, 0, 0);
|
||||
}
|
||||
|
||||
void pthread_mutex_lock(pthread_mutex_t *mp)
|
||||
void
|
||||
pthread_mutex_lock(pthread_mutex_t *mp)
|
||||
{
|
||||
WaitForSingleObject(*mp, INFINITE);
|
||||
WaitForSingleObject(*mp, INFINITE);
|
||||
}
|
||||
|
||||
void pthread_mutex_unlock(pthread_mutex_t *mp)
|
||||
void
|
||||
pthread_mutex_unlock(pthread_mutex_t *mp)
|
||||
{
|
||||
ReleaseMutex(*mp);
|
||||
ReleaseMutex(*mp);
|
||||
}
|
||||
|
Reference in New Issue
Block a user