Project
Loading...
Searching...
No Matches
pthread_mutex_win32_wrapper.h
Go to the documentation of this file.
1// Copyright 2019-2020 CERN and copyright holders of ALICE O2.
2// See https://alice-o2.web.cern.ch/copyright for details of the copyright holders.
3// All rights not expressly granted are reserved.
4//
5// This software is distributed under the terms of the GNU General Public
6// License v3 (GPL Version 3), copied verbatim in the file "COPYING".
7//
8// In applying this license CERN does not waive the privileges and immunities
9// granted to it by virtue of its status as an Intergovernmental Organization
10// or submit itself to any jurisdiction.
11
14
15#ifndef PTHREAD_MUTEX_WIN32_WRAPPER_H
16#define PTHREAD_MUTEX_WIN32_WRAPPER_H
17
18#include <windows.h>
19#include <winbase.h>
20typedef HANDLE pthread_mutex_t;
21typedef HANDLE pthread_t;
22typedef HANDLE sem_t;
23
24#ifndef EBUSY
25#define EBUSY WAIT_TIMEOUT
26#endif
27
28#ifndef EAGAIN
29#define EAGAIN WAIT_TIMEOUT
30#endif
31
32static inline int32_t pthread_mutex_init(pthread_mutex_t* mutex, const void* attr)
33{
34 *mutex = CreateSemaphore(nullptr, 1, 1, nullptr);
35 // printf("INIT %d\n", *mutex);
36 return ((*mutex) == nullptr);
37}
38
39static inline int32_t pthread_mutex_lock(pthread_mutex_t* mutex)
40{
41 // printf("LOCK %d\n", *mutex);
42 return (WaitForSingleObject(*mutex, INFINITE) == WAIT_FAILED);
43}
44
45static inline int32_t pthread_mutex_trylock(pthread_mutex_t* mutex)
46{
47 DWORD retVal = WaitForSingleObject(*mutex, 0);
48 if (retVal == WAIT_TIMEOUT) {
49 return (EBUSY);
50 }
51 // printf("TRYLOCK %d\n", *mutex);
52 if (retVal != WAIT_FAILED) {
53 return (0);
54 }
55 return (1);
56}
57
58static inline int32_t pthread_mutex_unlock(pthread_mutex_t* mutex)
59{
60 // printf("UNLOCK %d\n", *mutex);
61 return (ReleaseSemaphore(*mutex, 1, nullptr) == 0);
62}
63
64static inline int32_t pthread_mutex_destroy(pthread_mutex_t* mutex) { return (CloseHandle(*mutex) == 0); }
65
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); }
67
68static inline int32_t pthread_exit(void* ret) { ExitThread((DWORD)(size_t)ret); }
69
70static inline int32_t pthread_join(pthread_t thread, void** retval)
71{
72 static DWORD ExitCode;
73 while (GetExitCodeThread(thread, &ExitCode) == STILL_ACTIVE) {
74 Sleep(0);
75 }
76 if (retval != nullptr) {
77 *retval = (void*)&ExitCode;
78 }
79 return (0);
80}
81
82static inline int32_t sem_init(sem_t* sem, int32_t pshared, uint32_t value)
83{
84 *sem = CreateSemaphore(nullptr, value, 1024, nullptr);
85 return ((*sem) == nullptr);
86}
87
88static inline int32_t sem_destroy(sem_t* sem) { return (CloseHandle(*sem) == 0); }
89
90static inline int32_t sem_wait(sem_t* sem) { return (WaitForSingleObject(*sem, INFINITE) == WAIT_FAILED); }
91
92static inline int32_t sem_trywait(sem_t* sem)
93{
94 DWORD retVal = WaitForSingleObject(*sem, 0);
95 if (retVal == WAIT_TIMEOUT) {
96 return (EAGAIN);
97 }
98 if (retVal != WAIT_FAILED) {
99 return (0);
100 }
101 return (-1);
102}
103
104static inline int32_t sem_post(sem_t* sem) { return (ReleaseSemaphore(*sem, 1, nullptr) == 0); }
105
106#ifdef CMODULES_PTHREAD_BARRIERS
107
108typedef SYNCHRONIZATION_BARRIER pthread_barrier_t;
109
110static inline int32_t pthread_barrier_destroy(pthread_barrier_t* b) { return (DeleteSynchronizationBarrier(b) == 0); }
111
112static inline int32_t pthread_barrier_init(pthread_barrier_t* b, void* attr, unsigned count) { return (InitializeSynchronizationBarrier(b, count, -1) == 0); }
113
114static inline int32_t pthread_barrier_wait(pthread_barrier_t* b)
115{
116 EnterSynchronizationBarrier(b, 0);
117 return (0);
118}
119
120#endif
121
122#endif
int32_t retVal
GLint GLsizei count
Definition glcorearb.h:399
GLboolean GLboolean GLboolean b
Definition glcorearb.h:1233
GLsizei const GLfloat * value
Definition glcorearb.h:819
HANDLE pthread_mutex_t