- Sort Score
- Num 10 results
- Language All
Results 1 - 2 of 2 for LockQueue (0.05 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
cmd/local-locker_gen.go
return } case "Reads": z.Reads, err = dc.ReadInt() if err != nil { err = msgp.WrapError(err, "Reads") return } case "LockQueue": z.LockQueue, err = dc.ReadInt() if err != nil { err = msgp.WrapError(err, "LockQueue") return } case "LocksAbandoned": z.LocksAbandoned, err = dc.ReadInt() if err != nil { err = msgp.WrapError(err, "LocksAbandoned")
Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Sun Sep 28 20:59:21 GMT 2025 - 16.6K bytes - Click Count (0) -
cmd/local-locker.go
type lockStats struct { Total int Writes int Reads int LockQueue int LocksAbandoned int LastCleanup *time.Time } func (l *localLocker) stats() lockStats { return lockStats{ Total: len(l.lockMap), Reads: int(l.readers.Load()), Writes: int(l.writers.Load()), LockQueue: int(l.waitMutex.Load()), LastCleanup: l.lastCleanup.Load(), } }Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Sun Sep 28 20:59:21 GMT 2025 - 12K bytes - Click Count (0)