Home
last modified time | relevance | path

Searched refs:LC_SLEEPLOCK (Results 1 – 8 of 8) sorted by relevance

/f-stack/lib/
H A Dff_lock.c78 .lc_flags = LC_SLEEPLOCK | LC_RECURSABLE,
137 .lc_flags = LC_SLEEPLOCK | LC_RECURSABLE | LC_UPGRADABLE,
200 .lc_flags = LC_SLEEPLOCK | LC_RECURSABLE,
283 .lc_flags = LC_SLEEPLOCK | LC_SLEEPABLE | LC_RECURSABLE | LC_UPGRADABLE,
430 .lc_flags = LC_SLEEPLOCK | LC_SLEEPABLE | LC_RECURSABLE,
/f-stack/freebsd/kern/
H A Dsubr_witness.c1131 if (class->lc_flags & LC_SLEEPLOCK) { in witness_checkorder()
1521 if (LOCK_CLASS(lock)->lc_flags & LC_SLEEPLOCK) in witness_lock()
1582 if ((class->lc_flags & LC_SLEEPLOCK) == 0) in witness_upgrade()
1628 if ((class->lc_flags & LC_SLEEPLOCK) == 0) in witness_downgrade()
1673 if (class->lc_flags & LC_SLEEPLOCK) in witness_unlock()
1925 } else if (lock_class->lc_flags & LC_SLEEPLOCK) { in enroll()
1953 if (w->w_class->lc_flags & LC_SLEEPLOCK) { in depart()
2375 if (class->lc_flags & LC_SLEEPLOCK) in witness_save()
2410 if (class->lc_flags & LC_SLEEPLOCK) in witness_restore()
2440 if ((class->lc_flags & LC_SLEEPLOCK) != 0) in witness_assert()
[all …]
H A Dkern_rmlock.c90 .lc_flags = LC_SLEEPLOCK | LC_RECURSABLE,
104 .lc_flags = LC_SLEEPLOCK | LC_SLEEPABLE | LC_RECURSABLE,
H A Dkern_mutex.c117 .lc_flags = LC_SLEEPLOCK | LC_RECURSABLE,
H A Dkern_rwlock.c84 .lc_flags = LC_SLEEPLOCK | LC_RECURSABLE | LC_UPGRADABLE,
H A Dkern_sx.c129 .lc_flags = LC_SLEEPLOCK | LC_SLEEPABLE | LC_RECURSABLE | LC_UPGRADABLE,
H A Dkern_lock.c158 .lc_flags = LC_RECURSABLE | LC_SLEEPABLE | LC_SLEEPLOCK | LC_UPGRADABLE,
/f-stack/freebsd/sys/
H A Dlock.h72 #define LC_SLEEPLOCK 0x00000001 /* Sleep lock. */ macro