Home
last modified time | relevance | path

Searched refs:_BLOCKCOUNT_WAITERS_FLAG (Results 1 – 2 of 2) sorted by relevance

/freebsd/sys/sys/
H A D_blockcount.h40 #define _BLOCKCOUNT_WAITERS_FLAG (1U << 31) macro
41 #define _BLOCKCOUNT_COUNT(c) ((c) & ~_BLOCKCOUNT_WAITERS_FLAG)
42 #define _BLOCKCOUNT_WAITERS(c) (((c) & _BLOCKCOUNT_WAITERS_FLAG) != 0)
/freebsd/sys/kern/
H A Dkern_synch.c397 if (atomic_cmpset_int(&bc->__count, _BLOCKCOUNT_WAITERS_FLAG, 0)) in _blockcount_wakeup()
455 old | _BLOCKCOUNT_WAITERS_FLAG)); in _blockcount_sleep()