Searched refs:thrd (Results 1 – 2 of 2) sorted by relevance
| /dragonfly/lib/libthread_xu/thread/ |
| HD | thr_private.h | 485 #define THR_IN_CRITICAL(thrd) \ argument 486 (((thrd)->locklevel > 0) || \ 487 ((thrd)->critical_count > 0)) 492 #define THR_UMTX_TRYLOCK(thrd, lck) \ argument 493 _thr_umtx_trylock((lck), (thrd)->tid, 1) 495 #define THR_UMTX_LOCK(thrd, lck) \ argument 496 _thr_umtx_lock((lck), (thrd)->tid, 1) 498 #define THR_UMTX_TIMEDLOCK(thrd, lck, timo) \ argument 499 _thr_umtx_timedlock((lck), (thrd)->tid, (timo), 1) 501 #define THR_UMTX_UNLOCK(thrd, lck) \ argument [all …]
|
| HD | thr_list.c | 81 #define THREAD_HASH(thrd) (((unsigned long)thrd >> 12) % HASH_QUEUES) argument
|