Skip to content
Snippets Groups Projects
Commit 07787b3a authored by rswindell's avatar rswindell
Browse files

Changed posix mutex implementation on Win32 from Mutexes to Critical Sections

(*much* faster!).
parent 94ddcd3b
No related branches found
No related tags found
No related merge requests found
......@@ -70,12 +70,20 @@ extern "C" {
/* No Win32 implementation for sem_getvalue() */
/* POSIX mutexes */
#if 1 /* Implemented as Win32 Critical Sections */
typedef CRITICAL_SECTION pthread_mutex_t;
#define pthread_mutex_init(pmtx,v) InitializeCriticalSection(pmtx)
#define pthread_mutex_lock(pmtx) EnterCriticalSection(pmtx)
#define pthread_mutex_unlock(pmtx) LeaveCriticalSection(pmtx)
#define pthread_mutex_destroy(pmtx) DeleteCriticalSection(pmtx)
#else /* Implemented as Win32 Mutexes (much slower) */
typedef HANDLE pthread_mutex_t;
#define PTHREAD_MUTEX_INITIALIZER CreateMutex(NULL,FALSE,NULL)
#define pthread_mutex_init(pmtx,v) *(pmtx)=CreateMutex(NULL,FALSE,NULL)
#define pthread_mutex_lock(pmtx) WaitForSingleObject(*(pmtx),INFINITE)
#define pthread_mutex_unlock(pmtx) ReleaseMutex(*(pmtx))
#define pthread_mutex_destroy(pmtx) CloseHandle(*(pmtx))
#endif
#elif defined(__OS2__) /* These have *not* been tested! */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment