blob: 8b32cf6071d54c68e62ae143e1233520d80efa6d [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,
Christopher Faulet339fff82017-10-19 11:59:15 +0200158 LOCK_LABELS
Christopher Faulet1a2b56e2017-10-12 16:09:09 +0200159};
160struct lock_stat {
161 uint64_t nsec_wait_for_write;
162 uint64_t nsec_wait_for_read;
163 uint64_t num_write_locked;
164 uint64_t num_write_unlocked;
165 uint64_t num_read_locked;
166 uint64_t num_read_unlocked;
167};
168
169extern struct lock_stat lock_stats[LOCK_LABELS];
170
171#define __HA_SPINLOCK_T unsigned long
172
173#define __SPIN_INIT(l) ({ (*l) = 0; })
174#define __SPIN_DESTROY(l) ({ (*l) = 0; })
175#define __SPIN_LOCK(l) pl_take_w(l)
176#define __SPIN_TRYLOCK(l) !pl_try_w(l)
177#define __SPIN_UNLOCK(l) pl_drop_w(l)
178
179#define __HA_RWLOCK_T unsigned long
180
181#define __RWLOCK_INIT(l) ({ (*l) = 0; })
182#define __RWLOCK_DESTROY(l) ({ (*l) = 0; })
183#define __RWLOCK_WRLOCK(l) pl_take_w(l)
184#define __RWLOCK_TRYWRLOCK(l) !pl_try_w(l)
185#define __RWLOCK_WRUNLOCK(l) pl_drop_w(l)
186#define __RWLOCK_RDLOCK(l) pl_take_r(l)
187#define __RWLOCK_TRYRDLOCK(l) !pl_try_r(l)
188#define __RWLOCK_RDUNLOCK(l) pl_drop_r(l)
189
190#define HA_SPINLOCK_T struct ha_spinlock
191
192#define SPIN_INIT(l) __spin_init(l)
193#define SPIN_DESTROY(l) __spin_destroy(l)
194
195#define SPIN_LOCK(lbl, l) __spin_lock(lbl, l, __func__, __FILE__, __LINE__)
196#define SPIN_TRYLOCK(lbl, l) __spin_trylock(lbl, l, __func__, __FILE__, __LINE__)
197#define SPIN_UNLOCK(lbl, l) __spin_unlock(lbl, l, __func__, __FILE__, __LINE__)
198
199#define HA_RWLOCK_T struct ha_rwlock
200
201#define RWLOCK_INIT(l) __ha_rwlock_init((l))
202#define RWLOCK_DESTROY(l) __ha_rwlock_destroy((l))
203#define RWLOCK_WRLOCK(lbl,l) __ha_rwlock_wrlock(lbl, l, __func__, __FILE__, __LINE__)
204#define RWLOCK_TRYWRLOCK(lbl,l) __ha_rwlock_trywrlock(lbl, l, __func__, __FILE__, __LINE__)
205#define RWLOCK_WRUNLOCK(lbl,l) __ha_rwlock_wrunlock(lbl, l, __func__, __FILE__, __LINE__)
206#define RWLOCK_RDLOCK(lbl,l) __ha_rwlock_rdlock(lbl, l)
207#define RWLOCK_TRYRDLOCK(lbl,l) __ha_rwlock_tryrdlock(lbl, l)
208#define RWLOCK_RDUNLOCK(lbl,l) __ha_rwlock_rdunlock(lbl, l)
209
210struct ha_spinlock {
211 __HA_SPINLOCK_T lock;
212 struct {
213 unsigned long owner; /* a bit is set to 1 << tid for the lock owner */
214 unsigned long waiters; /* a bit is set to 1 << tid for waiting threads */
215 struct {
216 const char *function;
217 const char *file;
218 int line;
219 } last_location; /* location of the last owner */
220 } info;
221};
222
223struct ha_rwlock {
224 __HA_RWLOCK_T lock;
225 struct {
226 unsigned long cur_writer; /* a bit is set to 1 << tid for the lock owner */
227 unsigned long wait_writers; /* a bit is set to 1 << tid for waiting writers */
228 unsigned long cur_readers; /* a bit is set to 1 << tid for current readers */
229 unsigned long wait_readers; /* a bit is set to 1 << tid for waiting waiters */
230 struct {
231 const char *function;
232 const char *file;
233 int line;
234 } last_location; /* location of the last write owner */
235 } info;
236};
237
238static inline void show_lock_stats()
239{
Christopher Fauletd4604ad2017-05-29 10:40:41 +0200240 const char *labels[LOCK_LABELS] = {"THREAD_SYNC", "FDTAB", "FDCACHE", "FD", "POLL",
Christopher Fauletb79a94c2017-05-30 15:34:30 +0200241 "TASK_RQ", "TASK_WQ", "POOL",
Christopher Faulet29f77e82017-06-08 14:04:45 +0200242 "LISTENER", "LISTENER_QUEUE", "PROXY", "SERVER",
Emeric Brun1138fd02017-06-19 12:38:55 +0200243 "UPDATED_SERVERS", "LBPRM", "SIGNALS", "STK_TABLE", "STK_SESS",
244 "APPLETS" };
Christopher Faulet1a2b56e2017-10-12 16:09:09 +0200245 int lbl;
246
247 for (lbl = 0; lbl < LOCK_LABELS; lbl++) {
248 fprintf(stderr,
249 "Stats about Lock %s: \n"
250 "\t # write lock : %lu\n"
251 "\t # write unlock: %lu (%ld)\n"
252 "\t # wait time for write : %.3f msec\n"
253 "\t # wait time for write/lock: %.3f nsec\n"
254 "\t # read lock : %lu\n"
255 "\t # read unlock : %lu (%ld)\n"
256 "\t # wait time for read : %.3f msec\n"
257 "\t # wait time for read/lock : %.3f nsec\n",
258 labels[lbl],
259 lock_stats[lbl].num_write_locked,
260 lock_stats[lbl].num_write_unlocked,
261 lock_stats[lbl].num_write_unlocked - lock_stats[lbl].num_write_locked,
262 (double)lock_stats[lbl].nsec_wait_for_write / 1000000.0,
263 lock_stats[lbl].num_write_locked ? ((double)lock_stats[lbl].nsec_wait_for_write / (double)lock_stats[lbl].num_write_locked) : 0,
264 lock_stats[lbl].num_read_locked,
265 lock_stats[lbl].num_read_unlocked,
266 lock_stats[lbl].num_read_unlocked - lock_stats[lbl].num_read_locked,
267 (double)lock_stats[lbl].nsec_wait_for_read / 1000000.0,
268 lock_stats[lbl].num_read_locked ? ((double)lock_stats[lbl].nsec_wait_for_read / (double)lock_stats[lbl].num_read_locked) : 0);
269 }
270}
271
272/* Following functions are used to collect some stats about locks. We wrap
273 * pthread functions to known how much time we wait in a lock. */
274
275static uint64_t nsec_now(void) {
276 struct timespec ts;
277
278 clock_gettime(CLOCK_MONOTONIC, &ts);
279 return ((uint64_t) ts.tv_sec * 1000000000ULL +
280 (uint64_t) ts.tv_nsec);
281}
282
283static inline void __ha_rwlock_init(struct ha_rwlock *l)
284{
285 memset(l, 0, sizeof(struct ha_rwlock));
286 __RWLOCK_INIT(&l->lock);
287}
288
289static inline void __ha_rwlock_destroy(struct ha_rwlock *l)
290{
291 __RWLOCK_DESTROY(&l->lock);
292 memset(l, 0, sizeof(struct ha_rwlock));
293}
294
295
296static inline void __ha_rwlock_wrlock(enum lock_label lbl, struct ha_rwlock *l,
297 const char *func, const char *file, int line)
298{
299 uint64_t start_time;
300
301 if (unlikely(l->info.cur_writer & tid_bit)) {
302 /* the thread is already owning the lock for write */
303 abort();
304 }
305
306 if (unlikely(l->info.cur_readers & tid_bit)) {
307 /* the thread is already owning the lock for read */
308 abort();
309 }
310
311 HA_ATOMIC_OR(&l->info.wait_writers, tid_bit);
312
313 start_time = nsec_now();
314 __RWLOCK_WRLOCK(&l->lock);
315 HA_ATOMIC_ADD(&lock_stats[lbl].nsec_wait_for_write, (nsec_now() - start_time));
316
317 HA_ATOMIC_ADD(&lock_stats[lbl].num_write_locked, 1);
318
319 l->info.cur_writer = tid_bit;
320 l->info.last_location.function = func;
321 l->info.last_location.file = file;
322 l->info.last_location.line = line;
323
324 HA_ATOMIC_AND(&l->info.wait_writers, ~tid_bit);
325}
326
327static inline int __ha_rwlock_trywrlock(enum lock_label lbl, struct ha_rwlock *l,
328 const char *func, const char *file, int line)
329{
330 uint64_t start_time;
331 int r;
332
333 if (unlikely(l->info.cur_writer & tid_bit)) {
334 /* the thread is already owning the lock for write */
335 abort();
336 }
337
338 if (unlikely(l->info.cur_readers & tid_bit)) {
339 /* the thread is already owning the lock for read */
340 abort();
341 }
342
343 /* We set waiting writer because trywrlock could wait for readers to quit */
344 HA_ATOMIC_OR(&l->info.wait_writers, tid_bit);
345
346 start_time = nsec_now();
347 r = __RWLOCK_TRYWRLOCK(&l->lock);
348 HA_ATOMIC_ADD(&lock_stats[lbl].nsec_wait_for_write, (nsec_now() - start_time));
349 if (unlikely(r)) {
350 HA_ATOMIC_AND(&l->info.wait_writers, ~tid_bit);
351 return r;
352 }
353 HA_ATOMIC_ADD(&lock_stats[lbl].num_write_locked, 1);
354
355 l->info.cur_writer = tid_bit;
356 l->info.last_location.function = func;
357 l->info.last_location.file = file;
358 l->info.last_location.line = line;
359
360 HA_ATOMIC_AND(&l->info.wait_writers, ~tid_bit);
361
362 return 0;
363}
364
365static inline void __ha_rwlock_wrunlock(enum lock_label lbl,struct ha_rwlock *l,
366 const char *func, const char *file, int line)
367{
368 if (unlikely(!(l->info.cur_writer & tid_bit))) {
369 /* the thread is not owning the lock for write */
370 abort();
371 }
372
373 l->info.cur_writer = 0;
374 l->info.last_location.function = func;
375 l->info.last_location.file = file;
376 l->info.last_location.line = line;
377
378 __RWLOCK_WRUNLOCK(&l->lock);
379
380 HA_ATOMIC_ADD(&lock_stats[lbl].num_write_unlocked, 1);
381}
382
383static inline void __ha_rwlock_rdlock(enum lock_label lbl,struct ha_rwlock *l)
384{
385 uint64_t start_time;
386
387 if (unlikely(l->info.cur_writer & tid_bit)) {
388 /* the thread is already owning the lock for write */
389 abort();
390 }
391
392 if (unlikely(l->info.cur_readers & tid_bit)) {
393 /* the thread is already owning the lock for read */
394 abort();
395 }
396
397 HA_ATOMIC_OR(&l->info.wait_readers, tid_bit);
398
399 start_time = nsec_now();
400 __RWLOCK_RDLOCK(&l->lock);
401 HA_ATOMIC_ADD(&lock_stats[lbl].nsec_wait_for_read, (nsec_now() - start_time));
402 HA_ATOMIC_ADD(&lock_stats[lbl].num_read_locked, 1);
403
404 HA_ATOMIC_OR(&l->info.cur_readers, tid_bit);
405
406 HA_ATOMIC_AND(&l->info.wait_readers, ~tid_bit);
407}
408
409static inline int __ha_rwlock_tryrdlock(enum lock_label lbl,struct ha_rwlock *l)
410{
411 int r;
412
413 if (unlikely(l->info.cur_writer & tid_bit)) {
414 /* the thread is already owning the lock for write */
415 abort();
416 }
417
418 if (unlikely(l->info.cur_readers & tid_bit)) {
419 /* the thread is already owning the lock for read */
420 abort();
421 }
422
423 /* try read should never wait */
424 r = __RWLOCK_TRYRDLOCK(&l->lock);
425 if (unlikely(r))
426 return r;
427 HA_ATOMIC_ADD(&lock_stats[lbl].num_read_locked, 1);
428
429 HA_ATOMIC_OR(&l->info.cur_readers, tid_bit);
430
431 return 0;
432}
433
434static inline void __ha_rwlock_rdunlock(enum lock_label lbl,struct ha_rwlock *l)
435{
436 if (unlikely(!(l->info.cur_readers & tid_bit))) {
437 /* the thread is not owning the lock for read */
438 abort();
439 }
440
441 HA_ATOMIC_AND(&l->info.cur_readers, ~tid_bit);
442
443 __RWLOCK_RDUNLOCK(&l->lock);
444
445 HA_ATOMIC_ADD(&lock_stats[lbl].num_read_unlocked, 1);
446}
447
448static inline void __spin_init(struct ha_spinlock *l)
449{
450 memset(l, 0, sizeof(struct ha_spinlock));
451 __SPIN_INIT(&l->lock);
452}
453
454static inline void __spin_destroy(struct ha_spinlock *l)
455{
456 __SPIN_DESTROY(&l->lock);
457 memset(l, 0, sizeof(struct ha_spinlock));
458}
459
460static inline void __spin_lock(enum lock_label lbl, struct ha_spinlock *l,
461 const char *func, const char *file, int line)
462{
463 uint64_t start_time;
464
465 if (unlikely(l->info.owner & tid_bit)) {
466 /* the thread is already owning the lock */
467 abort();
468 }
469
470 HA_ATOMIC_OR(&l->info.waiters, tid_bit);
471
472 start_time = nsec_now();
473 __SPIN_LOCK(&l->lock);
474 HA_ATOMIC_ADD(&lock_stats[lbl].nsec_wait_for_write, (nsec_now() - start_time));
475
476 HA_ATOMIC_ADD(&lock_stats[lbl].num_write_locked, 1);
477
478
479 l->info.owner = tid_bit;
480 l->info.last_location.function = func;
481 l->info.last_location.file = file;
482 l->info.last_location.line = line;
483
484 HA_ATOMIC_AND(&l->info.waiters, ~tid_bit);
485}
486
487static inline int __spin_trylock(enum lock_label lbl, struct ha_spinlock *l,
488 const char *func, const char *file, int line)
489{
490 int r;
491
492 if (unlikely(l->info.owner & tid_bit)) {
493 /* the thread is already owning the lock */
494 abort();
495 }
496
497 /* try read should never wait */
498 r = __SPIN_TRYLOCK(&l->lock);
499 if (unlikely(r))
500 return r;
501 HA_ATOMIC_ADD(&lock_stats[lbl].num_write_locked, 1);
502
503 l->info.owner = tid_bit;
504 l->info.last_location.function = func;
505 l->info.last_location.file = file;
506 l->info.last_location.line = line;
507
508 return 0;
509}
510
511static inline void __spin_unlock(enum lock_label lbl, struct ha_spinlock *l,
512 const char *func, const char *file, int line)
513{
514 if (unlikely(!(l->info.owner & tid_bit))) {
515 /* the thread is not owning the lock */
516 abort();
517 }
518
519 l->info.owner = 0;
520 l->info.last_location.function = func;
521 l->info.last_location.file = file;
522 l->info.last_location.line = line;
523
524 __RWLOCK_WRUNLOCK(&l->lock);
525
526 HA_ATOMIC_ADD(&lock_stats[lbl].num_write_unlocked, 1);
527}
528
529#else /* DEBUG_THREAD */
530
531#define HA_SPINLOCK_T unsigned long
532
533#define SPIN_INIT(l) ({ (*l) = 0; })
534#define SPIN_DESTROY(l) ({ (*l) = 0; })
535#define SPIN_LOCK(lbl, l) pl_take_w(l)
536#define SPIN_TRYLOCK(lbl, l) !pl_try_w(l)
537#define SPIN_UNLOCK(lbl, l) pl_drop_w(l)
538
539#define HA_RWLOCK_T unsigned long
540
541#define RWLOCK_INIT(l) ({ (*l) = 0; })
542#define RWLOCK_DESTROY(l) ({ (*l) = 0; })
543#define RWLOCK_WRLOCK(lbl,l) pl_take_w(l)
544#define RWLOCK_TRYWRLOCK(lbl,l) !pl_try_w(l)
545#define RWLOCK_WRUNLOCK(lbl,l) pl_drop_w(l)
546#define RWLOCK_RDLOCK(lbl,l) pl_take_r(l)
547#define RWLOCK_TRYRDLOCK(lbl,l) !pl_try_r(l)
548#define RWLOCK_RDUNLOCK(lbl,l) pl_drop_r(l)
549
550#endif /* DEBUG_THREAD */
551
552#endif /* USE_THREAD */
553
554#endif /* _COMMON_HATHREADS_H */