Searched refs:sleep_cnt (Results 1 - 4 of 4) sorted by relevance

/freebsd-10.1-release/sys/kern/
H A Dkern_rwlock.c356 uint64_t sleep_cnt = 0; local
518 sleep_cnt++;
543 if (spin_cnt > sleep_cnt)
544 LOCKSTAT_RECORD1(LS_RW_RLOCK_SPIN, rw, (spin_cnt - sleep_cnt));
718 uint64_t sleep_cnt = 0; local
859 sleep_cnt++;
877 if (spin_cnt > sleep_cnt)
878 LOCKSTAT_RECORD1(LS_RW_WLOCK_SPIN, rw, (spin_cnt - sleep_cnt));
H A Dkern_sx.c515 uint64_t sleep_cnt = 0; local
686 sleep_cnt++;
707 if (spin_cnt > sleep_cnt)
708 LOCKSTAT_RECORD1(LS_SX_XLOCK_SPIN, sx, (spin_cnt - sleep_cnt));
796 uint64_t sleep_cnt = 0; local
934 sleep_cnt++;
953 if (spin_cnt > sleep_cnt)
954 LOCKSTAT_RECORD1(LS_SX_XLOCK_SPIN, sx, (spin_cnt - sleep_cnt));
H A Dkern_mutex.c389 uint64_t sleep_cnt = 0; local
514 sleep_cnt++;
533 if (spin_cnt > sleep_cnt)
534 LOCKSTAT_RECORD1(LS_MTX_LOCK_SPIN, m, (spin_cnt - sleep_cnt));
H A Dsubr_witness.c452 SYSCTL_INT(_debug_witness, OID_AUTO, sleep_cnt, CTLFLAG_RD, &w_sleep_cnt, 0,

Completed in 80 milliseconds