Lock Statistics

Locks

Number of times the lock obtained.

Lock-Waits

Number of times the lock waited because of contention.

Signals

Number of times the condition variable was signaled to schedule a single thread.

Broadcasts

Number of times the condition variable was signaled to schedule all threads.

Waits

Number of times a thread the waiting on the condition variable.

RdLocks

Number of times that a read lock was acquired from a readwrite mutex.

RdWaits

Number of times that a read lock waiting on a readwrite mutex.

RdTryFails

Number of times that a read trylock failed to acquire a readwrite mutex.

WrLocks

Number of times that a write lock waiting on a readwrite mutex.

WrWaits

Number of times that a write lock waiting on a readwrite mutex.

WrTryFails

Number of times that a write trylock failed to acquire a readwrite mutex.

Locks

Number of times that a lock was acquired from a spinlock.

SpinsWoTO

Number of times that a spinlock timed out waiting for the lock.

Spins

Number of times that a spinlock spun waiting for the lock.

TimeOuts

Number of times that a spinlock timed out waiting for the lock.