MySQL 9.1.0
Source Code Documentation
|
For tracking the mutex metrics. More...
Public Member Functions | |
Value (const char *name, ulint spins, uint64_t waits, uint64_t calls) | |
Constructor. More... | |
Public Attributes | |
std::string | m_name |
Mutex name. More... | |
ulint | m_spins |
Spins so far. More... | |
uint64_t | m_waits |
Waits so far. More... | |
uint64_t | m_calls |
Number of calls so far. More... | |
For tracking the mutex metrics.
|
inline |
Constructor.
[in] | name | Name of the mutex |
[in] | spins | Number of spins |
[in] | waits | OS waits so far |
[in] | calls | Number of calls to enter() |
uint64_t ShowStatus::Value::m_calls |
Number of calls so far.
std::string ShowStatus::Value::m_name |
Mutex name.
ulint ShowStatus::Value::m_spins |
Spins so far.
uint64_t ShowStatus::Value::m_waits |
Waits so far.