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

/freebsd-10.0-release/sys/kern/
H A Dkern_rwlock.c359 uint64_t sleep_cnt = 0; local
521 sleep_cnt++;
546 if (spin_cnt > sleep_cnt)
547 LOCKSTAT_RECORD1(LS_RW_RLOCK_SPIN, rw, (spin_cnt - sleep_cnt));
721 uint64_t sleep_cnt = 0; local
862 sleep_cnt++;
880 if (spin_cnt > sleep_cnt)
881 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.c459 SYSCTL_INT(_debug_witness, OID_AUTO, sleep_cnt, CTLFLAG_RD, &w_sleep_cnt, 0,

Completed in 98 milliseconds