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

/freebsd-9.3-release/sys/kern/
H A Dkern_rwlock.c327 uint64_t sleep_cnt = 0; local
487 sleep_cnt++;
512 if (spin_cnt > sleep_cnt)
513 LOCKSTAT_RECORD1(LS_RW_RLOCK_SPIN, rw, (spin_cnt - sleep_cnt));
679 uint64_t sleep_cnt = 0; local
818 sleep_cnt++;
836 if (spin_cnt > sleep_cnt)
837 LOCKSTAT_RECORD1(LS_RW_WLOCK_SPIN, rw, (spin_cnt - sleep_cnt));
H A Dkern_sx.c512 uint64_t sleep_cnt = 0; local
683 sleep_cnt++;
704 if (spin_cnt > sleep_cnt)
705 LOCKSTAT_RECORD1(LS_SX_XLOCK_SPIN, sx, (spin_cnt - sleep_cnt));
793 uint64_t sleep_cnt = 0; local
931 sleep_cnt++;
950 if (spin_cnt > sleep_cnt)
951 LOCKSTAT_RECORD1(LS_SX_XLOCK_SPIN, sx, (spin_cnt - sleep_cnt));
H A Dkern_mutex.c355 uint64_t sleep_cnt = 0; local
475 sleep_cnt++;
494 if (spin_cnt > sleep_cnt)
495 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 153 milliseconds