15#ifndef PTHREAD_MUTEX_WIN32_WRAPPER_H
16#define PTHREAD_MUTEX_WIN32_WRAPPER_H
25#define EBUSY WAIT_TIMEOUT
29#define EAGAIN WAIT_TIMEOUT
32static inline int32_t pthread_mutex_init(
pthread_mutex_t* mutex,
const void* attr)
34 *mutex = CreateSemaphore(
nullptr, 1, 1,
nullptr);
36 return ((*mutex) ==
nullptr);
42 return (WaitForSingleObject(*mutex, INFINITE) == WAIT_FAILED);
47 DWORD
retVal = WaitForSingleObject(*mutex, 0);
48 if (
retVal == WAIT_TIMEOUT) {
52 if (
retVal != WAIT_FAILED) {
61 return (ReleaseSemaphore(*mutex, 1,
nullptr) == 0);
64static inline int32_t pthread_mutex_destroy(
pthread_mutex_t* mutex) {
return (CloseHandle(*mutex) == 0); }
66static inline int32_t pthread_create(
pthread_t* thread,
const void* attr,
void* (*start_routine)(
void*),
void* arg) {
return ((*thread = CreateThread(
nullptr, 0, (LPTHREAD_START_ROUTINE)start_routine, arg, 0,
nullptr)) == 0); }
68static inline int32_t pthread_exit(
void* ret) { ExitThread((DWORD)(
size_t)ret); }
70static inline int32_t pthread_join(
pthread_t thread,
void** retval)
72 static DWORD ExitCode;
73 while (GetExitCodeThread(thread, &ExitCode) == STILL_ACTIVE) {
76 if (retval !=
nullptr) {
77 *retval = (
void*)&ExitCode;
82static inline int32_t sem_init(
sem_t* sem, int32_t pshared, uint32_t
value)
84 *sem = CreateSemaphore(
nullptr,
value, 1024,
nullptr);
85 return ((*sem) ==
nullptr);
88static inline int32_t sem_destroy(
sem_t* sem) {
return (CloseHandle(*sem) == 0); }
90static inline int32_t sem_wait(
sem_t* sem) {
return (WaitForSingleObject(*sem, INFINITE) == WAIT_FAILED); }
92static inline int32_t sem_trywait(
sem_t* sem)
94 DWORD
retVal = WaitForSingleObject(*sem, 0);
95 if (
retVal == WAIT_TIMEOUT) {
98 if (
retVal != WAIT_FAILED) {
104static inline int32_t sem_post(
sem_t* sem) {
return (ReleaseSemaphore(*sem, 1,
nullptr) == 0); }
106#ifdef CMODULES_PTHREAD_BARRIERS
108typedef SYNCHRONIZATION_BARRIER pthread_barrier_t;
110static inline int32_t pthread_barrier_destroy(pthread_barrier_t*
b) {
return (DeleteSynchronizationBarrier(
b) == 0); }
112static inline int32_t pthread_barrier_init(pthread_barrier_t*
b,
void* attr,
unsigned count) {
return (InitializeSynchronizationBarrier(
b,
count, -1) == 0); }
114static inline int32_t pthread_barrier_wait(pthread_barrier_t*
b)
116 EnterSynchronizationBarrier(
b, 0);
GLboolean GLboolean GLboolean b
GLsizei const GLfloat * value