Searched defs:mLockProfile (Results 1 – 2 of 2) sorted by relevance
715 type mLockProfile struct { struct716 waitTime atomic.Int64 // total nanoseconds spent waiting in runtime.lockWithRank717 stack []uintptr // stack that experienced contention in runtime.lockWithRank718 pending uintptr // *mutex that experienced contention (to be traceback-ed)719 cycles int64 // cycles attributable to "pending" (if set), otherwise to "stack"720 cyclesLost int64 // contention for which we weren't able to record a call stack721 disabled bool // attribute all time to "lost"724 func (prof *mLockProfile) recordLock(cycles int64, l *mutex) {768 func (prof *mLockProfile) recordUnlock(l *mutex) {777 func (prof *mLockProfile) captureStack() {[all …]
601 mLockProfile mLockProfile // fields relating to runtime.lock contention member