-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathc11threads.h
257 lines (204 loc) · 5.06 KB
/
c11threads.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
/*
Author: John Tsiombikas <[email protected]>
I place this piece of code in the public domain. Feel free to use as you see
fit. I'd appreciate it if you keep my name at the top of the code somehwere,
but whatever.
Main project site: https://github.com/jtsiomb/c11threads
*/
/* TODO: port to MacOSX: no timed mutexes under macosx...
* just delete that bit if you don't care about timed mutexes
*/
#ifndef C11THREADS_H_
#define C11THREADS_H_
#include <time.h>
#include <errno.h>
#include <pthread.h>
#include <sched.h> /* for sched_yield */
#include <sys/time.h>
#define ONCE_FLAG_INIT PTHREAD_ONCE_INIT
/* types */
typedef pthread_t thrd_t;
typedef pthread_mutex_t mtx_t;
typedef pthread_cond_t cnd_t;
typedef pthread_key_t tss_t;
typedef pthread_once_t once_flag;
typedef int (*thrd_start_t)(void*);
typedef void (*tss_dtor_t)(void*);
enum {
mtx_plain = 0,
mtx_recursive = 1,
mtx_timed = 2,
};
enum {
thrd_success,
thrd_timedout,
thrd_busy,
thrd_error,
thrd_nomem
};
/* ---- thread management ---- */
static inline int thrd_create(thrd_t *thr, thrd_start_t func, void *arg)
{
/* XXX there's a third possible value returned according to the standard:
* thrd_nomem. but it doesn't seem to correspond to any pthread_create errors.
*/
return pthread_create(thr, 0, (void*(*)(void*))func, arg) == 0 ? thrd_success : thrd_error;
}
static inline void thrd_exit(int res)
{
pthread_exit((void*)(long)res);
}
static inline int thrd_join(thrd_t thr, int *res)
{
void *retval;
if(pthread_join(thr, &retval) != 0) {
return thrd_error;
}
if(res) {
*res = (long)retval;
}
return thrd_success;
}
static inline int thrd_detach(thrd_t thr)
{
return pthread_detach(thr) == 0 ? thrd_success : thrd_error;
}
static inline thrd_t thrd_current(void)
{
return pthread_self();
}
static inline int thrd_equal(thrd_t a, thrd_t b)
{
return pthread_equal(a, b);
}
static inline void thrd_sleep(const struct timespec *ts_in, struct timespec *rem_out)
{
int res;
struct timespec rem, ts = *ts_in;
do {
res = nanosleep(&ts, &rem);
ts = rem;
} while(res == -1 && errno == EINTR);
if(rem_out) {
*rem_out = rem;
}
}
static inline void thrd_yield(void)
{
sched_yield();
}
/* ---- mutexes ---- */
static inline int mtx_init(mtx_t *mtx, int type)
{
int res;
pthread_mutexattr_t attr;
pthread_mutexattr_init(&attr);
#ifndef __MACH__
if(type & mtx_timed) {
pthread_mutexattr_settype(&attr, PTHREAD_MUTEX_TIMED_NP);
}
#endif
if(type & mtx_recursive) {
pthread_mutexattr_settype(&attr, PTHREAD_MUTEX_RECURSIVE);
}
res = pthread_mutex_init(mtx, &attr) == 0 ? thrd_success : thrd_error;
pthread_mutexattr_destroy(&attr);
return res;
}
static inline void mtx_destroy(mtx_t *mtx)
{
pthread_mutex_destroy(mtx);
}
static inline int mtx_lock(mtx_t *mtx)
{
int res = pthread_mutex_lock(mtx);
if(res == EDEADLK) {
return thrd_busy;
}
return res == 0 ? thrd_success : thrd_error;
}
static inline int mtx_trylock(mtx_t *mtx)
{
int res = pthread_mutex_trylock(mtx);
if(res == EBUSY) {
return thrd_busy;
}
return res == 0 ? thrd_success : thrd_error;
}
#ifndef __MACH__
static inline int mtx_timedlock(mtx_t *mtx, const struct timespec *ts)
{
int res;
if((res = pthread_mutex_timedlock(mtx, ts)) == ETIMEDOUT) {
return thrd_timedout;
}
return res == 0 ? thrd_success : thrd_error;
}
#endif /* __MACH__ */
static inline int mtx_unlock(mtx_t *mtx)
{
return pthread_mutex_unlock(mtx) == 0 ? thrd_success : thrd_error;
}
/* ---- condition variables ---- */
static inline int cnd_init(cnd_t *cond)
{
return pthread_cond_init(cond, 0) == 0 ? thrd_success : thrd_error;
}
static inline void cnd_destroy(cnd_t *cond)
{
pthread_cond_destroy(cond);
}
static inline int cnd_signal(cnd_t *cond)
{
return pthread_cond_signal(cond) == 0 ? thrd_success : thrd_error;
}
static inline int cnd_broadcast(cnd_t *cond)
{
return pthread_cond_broadcast(cond) == 0 ? thrd_success : thrd_error;
}
static inline int cnd_wait(cnd_t *cond, mtx_t *mtx)
{
return pthread_cond_wait(cond, mtx) == 0 ? thrd_success : thrd_error;
}
static inline int cnd_timedwait(cnd_t *cond, mtx_t *mtx, const struct timespec *ts)
{
int res;
if((res = pthread_cond_timedwait(cond, mtx, ts)) != 0) {
return res == ETIMEDOUT ? thrd_timedout : thrd_error;
}
return thrd_success;
}
/* ---- thread-specific data ---- */
static inline int tss_create(tss_t *key, tss_dtor_t dtor)
{
return pthread_key_create(key, dtor) == 0 ? thrd_success : thrd_error;
}
static inline void tss_delete(tss_t key)
{
pthread_key_delete(key);
}
static inline int tss_set(tss_t key, void *val)
{
return pthread_setspecific(key, val) == 0 ? thrd_success : thrd_error;
}
static inline void *tss_get(tss_t key)
{
return pthread_getspecific(key);
}
/* ---- misc ---- */
static inline void call_once(once_flag *flag, void (*func)(void))
{
pthread_once(flag, func);
}
#if __STDC_VERSION__ < 201112L
/* TODO take base into account */
static inline int timespec_get(struct timespec *ts, int base)
{
struct timeval tv;
gettimeofday(&tv, 0);
ts->tv_sec = tv.tv_sec;
ts->tv_nsec = tv.tv_usec * 1000;
return base;
}
#endif /* not C11 */
#endif /* C11THREADS_H_ */