blob: 3a77bd175738f8a80118a9080bdc6dd56448c7d0 [file] [log] [blame]
Christopher Faulet1a2b56e2017-10-12 16:09:09 +02001/*
2 * include/common/hathreads.h
3 * definitions, macros and inline functions about threads.
4 *
5 * Copyright (C) 2017 Christopher Fauet - cfaulet@haproxy.com
6 *
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation, version 2.1
10 * exclusively.
11 *
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
16 *
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20 */
21
22#ifndef _COMMON_HATHREADS_H
23#define _COMMON_HATHREADS_H
24
25#include <common/config.h>
26
27#define MAX_THREADS_MASK ((unsigned long)-1)
28extern THREAD_LOCAL unsigned int tid; /* The thread id */
29extern THREAD_LOCAL unsigned int tid_bit; /* The bit corresponding to the thread id */
30
31#ifndef USE_THREAD
32
33#define HA_ATOMIC_CAS(val, old, new) ({((*val) == (*old)) ? (*(val) = (new) , 1) : (*(old) = *(val), 0);})
34#define HA_ATOMIC_ADD(val, i) ({*(val) += (i);})
35#define HA_ATOMIC_SUB(val, i) ({*(val) -= (i);})
36#define HA_ATOMIC_AND(val, flags) ({*(val) &= (flags);})
37#define HA_ATOMIC_OR(val, flags) ({*(val) |= (flags);})
38#define HA_ATOMIC_XCHG(val, new) \
39 ({ \
40 typeof(*(val)) __old = *(val); \
41 *(val) = new; \
42 __old; \
43 })
44#define HA_ATOMIC_STORE(val, new) ({*(val) = new;})
45#define HA_ATOMIC_UPDATE_MAX(val, new) \
46 ({ \
47 typeof(*(val)) __new = (new); \
48 \
49 if (*(val) < __new) \
50 *(val) = __new; \
51 *(val); \
52 })
53
54#define HA_ATOMIC_UPDATE_MIN(val, new) \
55 ({ \
56 typeof(*(val)) __new = (new); \
57 \
58 if (*(val) > __new) \
59 *(val) = __new; \
60 *(val); \
61 })
62
Christopher Faulet339fff82017-10-19 11:59:15 +020063
64#define THREAD_SYNC_INIT(m) do { /* do nothing */ } while(0)
65#define THREAD_SYNC_ENABLE() do { /* do nothing */ } while(0)
66#define THREAD_WANT_SYNC() do { /* do nothing */ } while(0)
67#define THREAD_ENTER_SYNC() do { /* do nothing */ } while(0)
68#define THREAD_EXIT_SYNC() do { /* do nothing */ } while(0)
69#define THREAD_NO_SYNC() ({ 0; })
70#define THREAD_NEED_SYNC() ({ 1; })
71
Christopher Faulet1a2b56e2017-10-12 16:09:09 +020072#define SPIN_INIT(l) do { /* do nothing */ } while(0)
73#define SPIN_DESTROY(l) do { /* do nothing */ } while(0)
74#define SPIN_LOCK(lbl, l) do { /* do nothing */ } while(0)
75#define SPIN_TRYLOCK(lbl, l) ({ 0; })
76#define SPIN_UNLOCK(lbl, l) do { /* do nothing */ } while(0)
77
78#define RWLOCK_INIT(l) do { /* do nothing */ } while(0)
79#define RWLOCK_DESTROY(l) do { /* do nothing */ } while(0)
80#define RWLOCK_WRLOCK(lbl, l) do { /* do nothing */ } while(0)
81#define RWLOCK_TRYWRLOCK(lbl, l) ({ 0; })
82#define RWLOCK_WRUNLOCK(lbl, l) do { /* do nothing */ } while(0)
83#define RWLOCK_RDLOCK(lbl, l) do { /* do nothing */ } while(0)
84#define RWLOCK_TRYRDLOCK(lbl, l) ({ 0; })
85#define RWLOCK_RDUNLOCK(lbl, l) do { /* do nothing */ } while(0)
86
87#else /* USE_THREAD */
88
89#include <stdio.h>
90#include <stdlib.h>
91#include <string.h>
92#include <pthread.h>
93#include <import/plock.h>
94
95/* TODO: thread: For now, we rely on GCC builtins but it could be a good idea to
96 * have a header file regrouping all functions dealing with threads. */
97#define HA_ATOMIC_CAS(val, old, new) __atomic_compare_exchange_n(val, old, new, 0, 0, 0)
98#define HA_ATOMIC_ADD(val, i) __atomic_add_fetch(val, i, 0)
99#define HA_ATOMIC_SUB(val, i) __atomic_sub_fetch(val, i, 0)
100#define HA_ATOMIC_AND(val, flags) __atomic_and_fetch(val, flags, 0)
101#define HA_ATOMIC_OR(val, flags) __atomic_or_fetch(val, flags, 0)
102#define HA_ATOMIC_XCHG(val, new) __atomic_exchange_n(val, new, 0)
103#define HA_ATOMIC_STORE(val, new) __atomic_store_n(val, new, 0)
104#define HA_ATOMIC_UPDATE_MAX(val, new) \
105 ({ \
106 typeof(*(val)) __old = *(val); \
107 typeof(*(val)) __new = (new); \
108 \
109 while (__old < __new && !HA_ATOMIC_CAS(val, &__old, __new)); \
110 (*val); \
111 })
112#define HA_ATOMIC_UPDATE_MIN(val, new) \
113 ({ \
114 typeof((*val)) __old = *(val); \
115 typeof((*val)) __new = (new); \
116 \
117 while (__old > __new && !HA_ATOMIC_CAS(val, &__old, __new)); \
118 (*val); \
119 })
120
Christopher Faulet339fff82017-10-19 11:59:15 +0200121#define THREAD_SYNC_INIT(m) thread_sync_init(m)
122#define THREAD_SYNC_ENABLE() thread_sync_enable()
123#define THREAD_WANT_SYNC() thread_want_sync()
124#define THREAD_ENTER_SYNC() thread_enter_sync()
125#define THREAD_EXIT_SYNC() thread_exit_sync()
126#define THREAD_NO_SYNC() thread_no_sync()
127#define THREAD_NEED_SYNC() thread_need_sync()
128
129int thread_sync_init(unsigned long mask);
130void thread_sync_enable(void);
131void thread_want_sync(void);
132void thread_enter_sync(void);
133void thread_exit_sync(void);
134int thread_no_sync(void);
135int thread_need_sync(void);
136
Christopher Faulet1a2b56e2017-10-12 16:09:09 +0200137#if defined(DEBUG_THREAD) || defined(DEBUG_FULL)
138
139enum lock_label {
Christopher Faulet339fff82017-10-19 11:59:15 +0200140 THREAD_SYNC_LOCK = 0,
Christopher Fauletd4604ad2017-05-29 10:40:41 +0200141 FDTAB_LOCK,
142 FDCACHE_LOCK,
143 FD_LOCK,
144 POLL_LOCK,
Emeric Brunc60def82017-09-27 14:59:38 +0200145 TASK_RQ_LOCK,
146 TASK_WQ_LOCK,
Christopher Fauletb349e482017-08-29 09:52:38 +0200147 POOL_LOCK,
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200148 LISTENER_LOCK,
149 LISTENER_QUEUE_LOCK,
Christopher Fauletff8abcd2017-06-02 15:33:24 +0200150 PROXY_LOCK,
Christopher Faulet29f77e82017-06-08 14:04:45 +0200151 SERVER_LOCK,
Christopher Faulet5d42e092017-10-16 12:00:40 +0200152 UPDATED_SERVERS_LOCK,
Christopher Faulet5b517552017-06-09 14:17:53 +0200153 LBPRM_LOCK,
Christopher Fauletb79a94c2017-05-30 15:34:30 +0200154 SIGNALS_LOCK,
Emeric Brun819fc6f2017-06-13 19:37:32 +0200155 STK_TABLE_LOCK,
156 STK_SESS_LOCK,
Emeric Brun1138fd02017-06-19 12:38:55 +0200157 APPLETS_LOCK,
Emeric Brun80527f52017-06-19 17:46:37 +0200158 PEER_LOCK,
Christopher Faulet339fff82017-10-19 11:59:15 +0200159 LOCK_LABELS
Christopher Faulet1a2b56e2017-10-12 16:09:09 +0200160};
161struct lock_stat {
162 uint64_t nsec_wait_for_write;
163 uint64_t nsec_wait_for_read;
164 uint64_t num_write_locked;
165 uint64_t num_write_unlocked;
166 uint64_t num_read_locked;
167 uint64_t num_read_unlocked;
168};
169
170extern struct lock_stat lock_stats[LOCK_LABELS];
171
172#define __HA_SPINLOCK_T unsigned long
173
174#define __SPIN_INIT(l) ({ (*l) = 0; })
175#define __SPIN_DESTROY(l) ({ (*l) = 0; })
176#define __SPIN_LOCK(l) pl_take_w(l)
177#define __SPIN_TRYLOCK(l) !pl_try_w(l)
178#define __SPIN_UNLOCK(l) pl_drop_w(l)
179
180#define __HA_RWLOCK_T unsigned long
181
182#define __RWLOCK_INIT(l) ({ (*l) = 0; })
183#define __RWLOCK_DESTROY(l) ({ (*l) = 0; })
184#define __RWLOCK_WRLOCK(l) pl_take_w(l)
185#define __RWLOCK_TRYWRLOCK(l) !pl_try_w(l)
186#define __RWLOCK_WRUNLOCK(l) pl_drop_w(l)
187#define __RWLOCK_RDLOCK(l) pl_take_r(l)
188#define __RWLOCK_TRYRDLOCK(l) !pl_try_r(l)
189#define __RWLOCK_RDUNLOCK(l) pl_drop_r(l)
190
191#define HA_SPINLOCK_T struct ha_spinlock
192
193#define SPIN_INIT(l) __spin_init(l)
194#define SPIN_DESTROY(l) __spin_destroy(l)
195
196#define SPIN_LOCK(lbl, l) __spin_lock(lbl, l, __func__, __FILE__, __LINE__)
197#define SPIN_TRYLOCK(lbl, l) __spin_trylock(lbl, l, __func__, __FILE__, __LINE__)
198#define SPIN_UNLOCK(lbl, l) __spin_unlock(lbl, l, __func__, __FILE__, __LINE__)
199
200#define HA_RWLOCK_T struct ha_rwlock
201
202#define RWLOCK_INIT(l) __ha_rwlock_init((l))
203#define RWLOCK_DESTROY(l) __ha_rwlock_destroy((l))
204#define RWLOCK_WRLOCK(lbl,l) __ha_rwlock_wrlock(lbl, l, __func__, __FILE__, __LINE__)
205#define RWLOCK_TRYWRLOCK(lbl,l) __ha_rwlock_trywrlock(lbl, l, __func__, __FILE__, __LINE__)
206#define RWLOCK_WRUNLOCK(lbl,l) __ha_rwlock_wrunlock(lbl, l, __func__, __FILE__, __LINE__)
207#define RWLOCK_RDLOCK(lbl,l) __ha_rwlock_rdlock(lbl, l)
208#define RWLOCK_TRYRDLOCK(lbl,l) __ha_rwlock_tryrdlock(lbl, l)
209#define RWLOCK_RDUNLOCK(lbl,l) __ha_rwlock_rdunlock(lbl, l)
210
211struct ha_spinlock {
212 __HA_SPINLOCK_T lock;
213 struct {
214 unsigned long owner; /* a bit is set to 1 << tid for the lock owner */
215 unsigned long waiters; /* a bit is set to 1 << tid for waiting threads */
216 struct {
217 const char *function;
218 const char *file;
219 int line;
220 } last_location; /* location of the last owner */
221 } info;
222};
223
224struct ha_rwlock {
225 __HA_RWLOCK_T lock;
226 struct {
227 unsigned long cur_writer; /* a bit is set to 1 << tid for the lock owner */
228 unsigned long wait_writers; /* a bit is set to 1 << tid for waiting writers */
229 unsigned long cur_readers; /* a bit is set to 1 << tid for current readers */
230 unsigned long wait_readers; /* a bit is set to 1 << tid for waiting waiters */
231 struct {
232 const char *function;
233 const char *file;
234 int line;
235 } last_location; /* location of the last write owner */
236 } info;
237};
238
239static inline void show_lock_stats()
240{
Christopher Fauletd4604ad2017-05-29 10:40:41 +0200241 const char *labels[LOCK_LABELS] = {"THREAD_SYNC", "FDTAB", "FDCACHE", "FD", "POLL",
Christopher Fauletb79a94c2017-05-30 15:34:30 +0200242 "TASK_RQ", "TASK_WQ", "POOL",
Christopher Faulet29f77e82017-06-08 14:04:45 +0200243 "LISTENER", "LISTENER_QUEUE", "PROXY", "SERVER",
Emeric Brun1138fd02017-06-19 12:38:55 +0200244 "UPDATED_SERVERS", "LBPRM", "SIGNALS", "STK_TABLE", "STK_SESS",
Emeric Brun80527f52017-06-19 17:46:37 +0200245 "APPLETS", "PEER" };
Christopher Faulet1a2b56e2017-10-12 16:09:09 +0200246 int lbl;
247
248 for (lbl = 0; lbl < LOCK_LABELS; lbl++) {
249 fprintf(stderr,
250 "Stats about Lock %s: \n"
251 "\t # write lock : %lu\n"
252 "\t # write unlock: %lu (%ld)\n"
253 "\t # wait time for write : %.3f msec\n"
254 "\t # wait time for write/lock: %.3f nsec\n"
255 "\t # read lock : %lu\n"
256 "\t # read unlock : %lu (%ld)\n"
257 "\t # wait time for read : %.3f msec\n"
258 "\t # wait time for read/lock : %.3f nsec\n",
259 labels[lbl],
260 lock_stats[lbl].num_write_locked,
261 lock_stats[lbl].num_write_unlocked,
262 lock_stats[lbl].num_write_unlocked - lock_stats[lbl].num_write_locked,
263 (double)lock_stats[lbl].nsec_wait_for_write / 1000000.0,
264 lock_stats[lbl].num_write_locked ? ((double)lock_stats[lbl].nsec_wait_for_write / (double)lock_stats[lbl].num_write_locked) : 0,
265 lock_stats[lbl].num_read_locked,
266 lock_stats[lbl].num_read_unlocked,
267 lock_stats[lbl].num_read_unlocked - lock_stats[lbl].num_read_locked,
268 (double)lock_stats[lbl].nsec_wait_for_read / 1000000.0,
269 lock_stats[lbl].num_read_locked ? ((double)lock_stats[lbl].nsec_wait_for_read / (double)lock_stats[lbl].num_read_locked) : 0);
270 }
271}
272
273/* Following functions are used to collect some stats about locks. We wrap
274 * pthread functions to known how much time we wait in a lock. */
275
276static uint64_t nsec_now(void) {
277 struct timespec ts;
278
279 clock_gettime(CLOCK_MONOTONIC, &ts);
280 return ((uint64_t) ts.tv_sec * 1000000000ULL +
281 (uint64_t) ts.tv_nsec);
282}
283
284static inline void __ha_rwlock_init(struct ha_rwlock *l)
285{
286 memset(l, 0, sizeof(struct ha_rwlock));
287 __RWLOCK_INIT(&l->lock);
288}
289
290static inline void __ha_rwlock_destroy(struct ha_rwlock *l)
291{
292 __RWLOCK_DESTROY(&l->lock);
293 memset(l, 0, sizeof(struct ha_rwlock));
294}
295
296
297static inline void __ha_rwlock_wrlock(enum lock_label lbl, struct ha_rwlock *l,
298 const char *func, const char *file, int line)
299{
300 uint64_t start_time;
301
302 if (unlikely(l->info.cur_writer & tid_bit)) {
303 /* the thread is already owning the lock for write */
304 abort();
305 }
306
307 if (unlikely(l->info.cur_readers & tid_bit)) {
308 /* the thread is already owning the lock for read */
309 abort();
310 }
311
312 HA_ATOMIC_OR(&l->info.wait_writers, tid_bit);
313
314 start_time = nsec_now();
315 __RWLOCK_WRLOCK(&l->lock);
316 HA_ATOMIC_ADD(&lock_stats[lbl].nsec_wait_for_write, (nsec_now() - start_time));
317
318 HA_ATOMIC_ADD(&lock_stats[lbl].num_write_locked, 1);
319
320 l->info.cur_writer = tid_bit;
321 l->info.last_location.function = func;
322 l->info.last_location.file = file;
323 l->info.last_location.line = line;
324
325 HA_ATOMIC_AND(&l->info.wait_writers, ~tid_bit);
326}
327
328static inline int __ha_rwlock_trywrlock(enum lock_label lbl, struct ha_rwlock *l,
329 const char *func, const char *file, int line)
330{
331 uint64_t start_time;
332 int r;
333
334 if (unlikely(l->info.cur_writer & tid_bit)) {
335 /* the thread is already owning the lock for write */
336 abort();
337 }
338
339 if (unlikely(l->info.cur_readers & tid_bit)) {
340 /* the thread is already owning the lock for read */
341 abort();
342 }
343
344 /* We set waiting writer because trywrlock could wait for readers to quit */
345 HA_ATOMIC_OR(&l->info.wait_writers, tid_bit);
346
347 start_time = nsec_now();
348 r = __RWLOCK_TRYWRLOCK(&l->lock);
349 HA_ATOMIC_ADD(&lock_stats[lbl].nsec_wait_for_write, (nsec_now() - start_time));
350 if (unlikely(r)) {
351 HA_ATOMIC_AND(&l->info.wait_writers, ~tid_bit);
352 return r;
353 }
354 HA_ATOMIC_ADD(&lock_stats[lbl].num_write_locked, 1);
355
356 l->info.cur_writer = tid_bit;
357 l->info.last_location.function = func;
358 l->info.last_location.file = file;
359 l->info.last_location.line = line;
360
361 HA_ATOMIC_AND(&l->info.wait_writers, ~tid_bit);
362
363 return 0;
364}
365
366static inline void __ha_rwlock_wrunlock(enum lock_label lbl,struct ha_rwlock *l,
367 const char *func, const char *file, int line)
368{
369 if (unlikely(!(l->info.cur_writer & tid_bit))) {
370 /* the thread is not owning the lock for write */
371 abort();
372 }
373
374 l->info.cur_writer = 0;
375 l->info.last_location.function = func;
376 l->info.last_location.file = file;
377 l->info.last_location.line = line;
378
379 __RWLOCK_WRUNLOCK(&l->lock);
380
381 HA_ATOMIC_ADD(&lock_stats[lbl].num_write_unlocked, 1);
382}
383
384static inline void __ha_rwlock_rdlock(enum lock_label lbl,struct ha_rwlock *l)
385{
386 uint64_t start_time;
387
388 if (unlikely(l->info.cur_writer & tid_bit)) {
389 /* the thread is already owning the lock for write */
390 abort();
391 }
392
393 if (unlikely(l->info.cur_readers & tid_bit)) {
394 /* the thread is already owning the lock for read */
395 abort();
396 }
397
398 HA_ATOMIC_OR(&l->info.wait_readers, tid_bit);
399
400 start_time = nsec_now();
401 __RWLOCK_RDLOCK(&l->lock);
402 HA_ATOMIC_ADD(&lock_stats[lbl].nsec_wait_for_read, (nsec_now() - start_time));
403 HA_ATOMIC_ADD(&lock_stats[lbl].num_read_locked, 1);
404
405 HA_ATOMIC_OR(&l->info.cur_readers, tid_bit);
406
407 HA_ATOMIC_AND(&l->info.wait_readers, ~tid_bit);
408}
409
410static inline int __ha_rwlock_tryrdlock(enum lock_label lbl,struct ha_rwlock *l)
411{
412 int r;
413
414 if (unlikely(l->info.cur_writer & tid_bit)) {
415 /* the thread is already owning the lock for write */
416 abort();
417 }
418
419 if (unlikely(l->info.cur_readers & tid_bit)) {
420 /* the thread is already owning the lock for read */
421 abort();
422 }
423
424 /* try read should never wait */
425 r = __RWLOCK_TRYRDLOCK(&l->lock);
426 if (unlikely(r))
427 return r;
428 HA_ATOMIC_ADD(&lock_stats[lbl].num_read_locked, 1);
429
430 HA_ATOMIC_OR(&l->info.cur_readers, tid_bit);
431
432 return 0;
433}
434
435static inline void __ha_rwlock_rdunlock(enum lock_label lbl,struct ha_rwlock *l)
436{
437 if (unlikely(!(l->info.cur_readers & tid_bit))) {
438 /* the thread is not owning the lock for read */
439 abort();
440 }
441
442 HA_ATOMIC_AND(&l->info.cur_readers, ~tid_bit);
443
444 __RWLOCK_RDUNLOCK(&l->lock);
445
446 HA_ATOMIC_ADD(&lock_stats[lbl].num_read_unlocked, 1);
447}
448
449static inline void __spin_init(struct ha_spinlock *l)
450{
451 memset(l, 0, sizeof(struct ha_spinlock));
452 __SPIN_INIT(&l->lock);
453}
454
455static inline void __spin_destroy(struct ha_spinlock *l)
456{
457 __SPIN_DESTROY(&l->lock);
458 memset(l, 0, sizeof(struct ha_spinlock));
459}
460
461static inline void __spin_lock(enum lock_label lbl, struct ha_spinlock *l,
462 const char *func, const char *file, int line)
463{
464 uint64_t start_time;
465
466 if (unlikely(l->info.owner & tid_bit)) {
467 /* the thread is already owning the lock */
468 abort();
469 }
470
471 HA_ATOMIC_OR(&l->info.waiters, tid_bit);
472
473 start_time = nsec_now();
474 __SPIN_LOCK(&l->lock);
475 HA_ATOMIC_ADD(&lock_stats[lbl].nsec_wait_for_write, (nsec_now() - start_time));
476
477 HA_ATOMIC_ADD(&lock_stats[lbl].num_write_locked, 1);
478
479
480 l->info.owner = tid_bit;
481 l->info.last_location.function = func;
482 l->info.last_location.file = file;
483 l->info.last_location.line = line;
484
485 HA_ATOMIC_AND(&l->info.waiters, ~tid_bit);
486}
487
488static inline int __spin_trylock(enum lock_label lbl, struct ha_spinlock *l,
489 const char *func, const char *file, int line)
490{
491 int r;
492
493 if (unlikely(l->info.owner & tid_bit)) {
494 /* the thread is already owning the lock */
495 abort();
496 }
497
498 /* try read should never wait */
499 r = __SPIN_TRYLOCK(&l->lock);
500 if (unlikely(r))
501 return r;
502 HA_ATOMIC_ADD(&lock_stats[lbl].num_write_locked, 1);
503
504 l->info.owner = tid_bit;
505 l->info.last_location.function = func;
506 l->info.last_location.file = file;
507 l->info.last_location.line = line;
508
509 return 0;
510}
511
512static inline void __spin_unlock(enum lock_label lbl, struct ha_spinlock *l,
513 const char *func, const char *file, int line)
514{
515 if (unlikely(!(l->info.owner & tid_bit))) {
516 /* the thread is not owning the lock */
517 abort();
518 }
519
520 l->info.owner = 0;
521 l->info.last_location.function = func;
522 l->info.last_location.file = file;
523 l->info.last_location.line = line;
524
525 __RWLOCK_WRUNLOCK(&l->lock);
526
527 HA_ATOMIC_ADD(&lock_stats[lbl].num_write_unlocked, 1);
528}
529
530#else /* DEBUG_THREAD */
531
532#define HA_SPINLOCK_T unsigned long
533
534#define SPIN_INIT(l) ({ (*l) = 0; })
535#define SPIN_DESTROY(l) ({ (*l) = 0; })
536#define SPIN_LOCK(lbl, l) pl_take_w(l)
537#define SPIN_TRYLOCK(lbl, l) !pl_try_w(l)
538#define SPIN_UNLOCK(lbl, l) pl_drop_w(l)
539
540#define HA_RWLOCK_T unsigned long
541
542#define RWLOCK_INIT(l) ({ (*l) = 0; })
543#define RWLOCK_DESTROY(l) ({ (*l) = 0; })
544#define RWLOCK_WRLOCK(lbl,l) pl_take_w(l)
545#define RWLOCK_TRYWRLOCK(lbl,l) !pl_try_w(l)
546#define RWLOCK_WRUNLOCK(lbl,l) pl_drop_w(l)
547#define RWLOCK_RDLOCK(lbl,l) pl_take_r(l)
548#define RWLOCK_TRYRDLOCK(lbl,l) !pl_try_r(l)
549#define RWLOCK_RDUNLOCK(lbl,l) pl_drop_r(l)
550
551#endif /* DEBUG_THREAD */
552
553#endif /* USE_THREAD */
554
555#endif /* _COMMON_HATHREADS_H */