-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy paththread_macros.h
329 lines (294 loc) · 8.1 KB
/
thread_macros.h
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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
/*
Copyright 2013 Barobo, Inc.
This file is part of BaroboLink.
BaroboLink is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
BaroboLink is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with BaroboLink. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef _THREAD_MACROS_H_
#define _THREAD_MACROS_H_
/* * * * * * * * * * * * * * * */
/* W I N D O W S M A C R O S */
/* * * * * * * * * * * * * * * */
#if defined (_WIN32) || defined (MSYS)
/* ******* *
* THREADS *
* ******* */
#ifndef THREAD_T
#define THREAD_T HANDLE
#endif
#define THREAD_CREATE(thread_handle, function, arg) \
*(thread_handle) = CreateThread( \
NULL, \
0, \
(LPTHREAD_START_ROUTINE)function, \
arg, \
0, \
NULL \
)
#define THREAD_CANCEL(thread_handle) \
TerminateThread( thread_handle, 0)
#define THREAD_JOIN(thread_handle) \
WaitForSingleObject(thread_handle, INFINITE)
#define THREAD_EXIT() \
ExitThread(0)
#define THREAD_DETACH()
#define THREAD_YIELD() SwitchToThread()
/* ***** */
/* MUTEX */
/* ***** */
/* Typedef */
#define MUTEX_T HANDLE
/* Init */
#define MUTEX_INIT(mutex) \
*mutex = CreateMutex(NULL, FALSE, NULL)
/* Destroy */
#define MUTEX_DESTROY(mutex)
/* Functions */
#define MUTEX_LOCK(mutex) \
WaitForSingleObject( \
*mutex , \
INFINITE)
#define MUTEX_UNLOCK(mutex) \
ReleaseMutex( *mutex )
#define MUTEX_NEW(mutex) \
mutex = (HANDLE*)malloc(sizeof(HANDLE)); \
if(mutex == NULL) \
fprintf(stderr, "Memory Error. %s:%d\n", __FILE__, __LINE__)
/* **** *
* COND *
* **** */
/* Typedef */
#define COND_T HANDLE
/* New */
#define COND_NEW(cond) \
cond = (HANDLE*)malloc(sizeof(HANDLE)); \
if(cond == NULL) \
fprintf(stderr, "Memory Error. %s:%d\n", __FILE__, __LINE__)
/* Init */
#define COND_INIT(cond) \
*cond = CreateEvent(NULL, TRUE, TRUE, NULL);\
ResetEvent(*cond)
/* Destroy */
#define COND_DESTROY(cond)
/* Functions */
#define COND_WAIT( cond , mutex ) \
ResetEvent(*cond); \
ReleaseMutex(*mutex); \
WaitForSingleObject( *cond, INFINITE)
#define COND_SLEEP( cond, mutex, test ) \
ResetEvent( *cond ); \
if (!test){ \
WaitForSingleObject( *cond, INFINITE); \
}
#define COND_RESET( cond, mutex ) \
ResetEvent(*cond)
#define COND_SLEEP_ACTION(cond, mutex, action) \
ResetEvent( *cond ); \
action; \
WaitForSingleObject( *cond, INFINITE)
#define COND_BROADCAST(cond) \
PulseEvent(*cond)
#define COND_SIGNAL(cond) \
SetEvent(*cond)
/* ********* *
* SEMAPHORE *
* ********* */
/* Typedef */
#define SEMAPHORE_T HANDLE
/* Init */
#define SEMAPHORE_INIT(sem) \
*sem = CreateSemaphore( \
NULL, \
0, \
1024, \
NULL )
/* Destroy */
#define SEMAPHORE_DESTROY(sem)
/* Functions */
#define SEMAPHORE_WAIT(sem) \
WaitForSingleObject(sem, INFINITE)
#define SEMAPHORE_POST(sem) \
ReleaseSemaphore(sem, 1, NULL)
/* ******* *
* RW_LOCK *
* ******* */
/* Typedef */
#define RWLOCK_T mc_rwlock_t
/* Init */
#define RWLOCK_INIT(rwlock) \
mc_rwlock_init(rwlock)
/* Destroy */
#define RWLOCK_DESTROY(rwlock) mc_rwlock_destroy(rwlock)
/* Functions */
#define RWLOCK_RDLOCK(rwlock) \
mc_rwlock_rdlock(rwlock)
#define RWLOCK_RDUNLOCK(rwlock) \
mc_rwlock_rdunlock(rwlock)
#define RWLOCK_WRLOCK(rwlock) \
mc_rwlock_wrlock(rwlock)
#define RWLOCK_WRUNLOCK(rwlock) \
mc_rwlock_wrunlock(rwlock)
/* * * * * * * * * * * * */
/* U N I X M A C R O S */
/* * * * * * * * * * * * */
#else
#include <pthread.h>
#define THREAD_T pthread_t
#define THREAD_CREATE( thread_handle, function, arg ) \
while(pthread_create( \
thread_handle, \
NULL, \
function, \
(void*) arg \
) < 0) { \
printf("pthread_create failed. Trying again...\n"); \
}
#define THREAD_CANCEL( thread_handle ) \
pthread_cancel( thread_handle )
#define THREAD_JOIN(thread_handle ) \
pthread_join( thread_handle, NULL )
#define THREAD_DETACH(thread_handle) \
if(pthread_detach(thread_handle) < 0) { \
printf("pthread_detach failed. %s:%d\n", __FILE__, __LINE__); \
}
#define THREAD_EXIT() \
pthread_exit(NULL)
#define THREAD_YIELD() pthread_yield()
/* ***** */
/* MUTEX */
/* ***** */
/* Typedef */
#define MUTEX_T pthread_mutex_t
/* Init */
#define MUTEX_INIT(mutex) \
pthread_mutex_init(mutex, NULL)
/* Destroy */
#define MUTEX_DESTROY(mutex) \
pthread_mutex_destroy(mutex)
/* functions */
#define MUTEX_LOCK(mutex) \
if (pthread_mutex_lock( mutex )) \
fprintf(stderr, "pthread lock error: %s:%d\n", __FILE__, __LINE__)
#define MUTEX_UNLOCK(mutex) \
pthread_mutex_unlock( mutex )
#define MUTEX_NEW(mutex) \
mutex = (pthread_mutex_t*)malloc(sizeof(pthread_mutex_t)); \
if (mutex == NULL) \
fprintf(stderr, "Memory Error. %s:%d\n", __FILE__,__LINE__); \
/* **** *
* COND *
* **** */
/* Typedef */
#define COND_T pthread_cond_t
/* Init */
#define COND_INIT(cond) \
pthread_cond_init(cond, NULL)
/* New */
#define COND_NEW(cond) \
cond = (pthread_cond_t*)malloc(sizeof(pthread_cond_t)); \
if (cond == NULL) \
fprintf(stderr, "Memory Error. %s:%d\n", __FILE__,__LINE__); \
/* Destroy */
#define COND_DESTROY(cond) \
pthread_cond_destroy(cond)
/* functions */
#define COND_WAIT( cond , mutex ) \
pthread_cond_wait(cond, mutex )
/* Wait until 'test' is true */
#define COND_SLEEP( cond, mutex, test ) \
if (pthread_mutex_lock( mutex )) \
printf("pthread lock error: %s:%d\n", __FILE__, __LINE__); \
if (!test) { \
pthread_cond_wait( cond, mutex ); \
}
#define COND_RESET( cond, mutex ) \
pthread_mutex_unlock( mutex );
#define COND_SLEEP_ACTION(cond, mutex, action) \
if (pthread_mutex_lock( mutex )) \
printf("pthread lock error: %s:%d\n", __FILE__, __LINE__); \
action; \
pthread_cond_wait( cond, mutex );
#define CONDSIGNAL(cond, mutex, action) \
pthread_mutex_lock( mutex ); \
action; \
pthread_cond_signal( cond ); \
pthread_mutex_unlock( mutex )
#define COND_BROADCAST(cond) \
pthread_cond_broadcast( cond )
#define COND_SIGNAL(cond) \
pthread_cond_signal( cond )
/* ********* *
* SEMAPHORE *
* ********* */
/* Typedef */
#define SEMAPHORE_T sem_t
/* Init */
#define SEMAPHORE_INIT(sem) \
sem_init(sem, 0, 0)
/* Destroy */
#define SEMAPHORE_DESTROY(sem) \
sem_destroy(sem)
/* Functions */
#define SEMAPHORE_WAIT(sem) \
sem_wait(sem)
#define SEMAPHORE_POST(sem) \
sem_post(sem)
/* ******* *
* RW_LOCK *
* ******* */
/* Typedef */
#ifdef HAVE_PTHREAD_RWLOCK_T
#define RWLOCK_T pthread_rwlock_t
#else
#define RWLOCK_T mc_rwlock_t
#endif
/* Init */
#ifdef HAVE_PTHREAD_RWLOCK_T
#define RWLOCK_INIT(rwlock) \
pthread_rwlock_init(rwlock, NULL)
#else
#define RWLOCK_INIT(rwlock) \
mc_rwlock_init(rwlock)
#endif
/* Destroy */
#ifdef HAVE_PTHREAD_RWLOCK_T
#define RWLOCK_DESTROY(rwlock) \
pthread_rwlock_destroy(rwlock)
#else
#define RWLOCK_DESTROY(rwlock) \
mc_rwlock_destroy(rwlock)
#endif
/* Functions */
#ifdef HAVE_PTHREAD_RWLOCK_T
#define RWLOCK_RDLOCK(rwlock) \
if (pthread_rwlock_rdlock(rwlock)) \
fprintf(stderr, "rwlock error: %s:%d\n", __FILE__, __LINE__)
#define RWLOCK_RDUNLOCK(rwlock) \
if (pthread_rwlock_unlock(rwlock)) \
fprintf(stderr, "rwunlock error: %s:%d\n", __FILE__, __LINE__)
#define RWLOCK_WRLOCK(rwlock) \
if (pthread_rwlock_wrlock(rwlock)) \
fprintf(stderr, "rwlock error: %s:%d\n", __FILE__, __LINE__)
#define RWLOCK_WRUNLOCK(rwlock) \
if (pthread_rwlock_unlock(rwlock)) \
fprintf(stderr, "rwunlock error: %s:%d\n", __FILE__, __LINE__)
#else
#define RWLOCK_RDLOCK(rwlock) \
mc_rwlock_rdlock(rwlock)
#define RWLOCK_RDUNLOCK(rwlock) \
mc_rwlock_rdunlock(rwlock)
#define RWLOCK_WRLOCK(rwlock) \
mc_rwlock_wrlock(rwlock)
#define RWLOCK_WRUNLOCK(rwlock) \
mc_rwlock_wrunlock(rwlock)
#endif
#endif /* Unix/Windows macros */
#endif