-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmacrothreading_mutex.c
95 lines (90 loc) · 2.13 KB
/
macrothreading_mutex.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
#include "macrothreading_mutex.h"
macrothread_mutex_t macrothread_mutex_init()
{
#if defined MACROTHREADING_ESP32
return xSemaphoreCreateMutex();
#elif defined MACROTHREADING_PTHREADS
pthread_mutex_t *mutex;
mutex = (pthread_mutex_t*)malloc(sizeof(pthread_mutex_t));
if(mutex == NULL) {
return NULL;
}
return pthread_mutex_init(mutex, NULL) == 0 ? mutex : NULL;
#elif defined MACROTHREADING_WINDOWS
HANDLE *mutex;
mutex = (HANDLE*)malloc(sizeof(HANDLE));
*mutex = CreateMutex(
NULL, // default security attributes
FALSE, // initially not owned
NULL); // unnamed mutex
return mutex;
#else
return false;
#endif
}
void macrothread_mutex_lock(macrothread_mutex_t mutex)
{
#if defined MACROTHREADING_ESP32
xSemaphoreTake(mutex, portMAX_DELAY);
#elif defined MACROTHREADING_PTHREADS
if(pthread_mutex_lock(mutex) != 0) {
exit(1);
}
#elif defined MACROTHREADING_WINDOWS
DWORD result;
result = WaitForSingleObject(
*mutex, // handle to mutex
INFINITE); // no time-out interval
switch (result)
{
case WAIT_OBJECT_0:
break;
case WAIT_ABANDONED:
ExitProcess(1);
}
#else
if(mutex) {
exit(1);
}
mutex = true;
#endif
}
void macrothread_mutex_unlock(macrothread_mutex_t mutex)
{
#if defined MACROTHREADING_ESP32
xSemaphoreGive(mutex);
#elif defined MACROTHREADING_PTHREADS
if(pthread_mutex_unlock(mutex) != 0) {
exit(1);
}
#elif defined MACROTHREADING_WINDOWS
if(! ReleaseMutex(*mutex)) {
ExitProcess(1);
}
#else
if(!mutex) {
exit(1);
}
mutex = false;
#endif
}
void macrothread_mutex_destroy(macrothread_mutex_t mutex)
{
#if defined MACROTHREADING_ESP32
vSemaphoreDelete(mutex);
#elif defined MACROTHREADING_PTHREADS
if(pthread_mutex_destroy(mutex) != 0) {
exit(1);
}
free(mutex);
#elif defined MACROTHREADING_WINDOWS
if(!CloseHandle(*mutex)) {
ExitProcess(1);
}
free(mutex);
#else
if(mutex) {
exit(1);
}
#endif
}