Home
last modified time | relevance | path

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

/dragonfly/sys/kern/
HDkern_lock.c161 if (count & LKC_CANCEL) in lockmgr_shared()
234 if (count & LKC_CANCEL) { in lockmgr_shared()
353 if (count & LKC_CANCEL) in lockmgr_exclusive()
427 if (count & LKC_CANCEL) { in lockmgr_exclusive()
686 if (count & LKC_CANCEL) { in lockmgr_upgrade()
801 ncount &= ~(LKC_CANCEL | LKC_EXREQ2); in lockmgr_release()
901 ncount = (count - LKC_SCOUNT) & ~LKC_CANCEL; in lockmgr_release()
921 ~(LKC_UPREQ | LKC_CANCEL | LKC_SHARED); in lockmgr_release()
941 LKC_CANCEL | LKC_SHARED); in lockmgr_release()
986 KKASSERT((count & LKC_CANCEL) == 0); /* disallowed case */ in lockmgr_cancel_beg()
[all …]
/dragonfly/sys/sys/
HDlock.h159 #define LKC_CANCEL 0x0000000004000000LU /* cancel in effect */ macro