| 703 | } |
| 704 | |
| 705 | void Checkable::DecreasePendingChecks() |
| 706 | { |
| 707 | std::unique_lock<std::mutex> lock(m_StatsMutex); |
| 708 | m_PendingChecks--; |
| 709 | m_PendingChecksCV.notify_one(); |
| 710 | } |
| 711 | |
| 712 | int Checkable::GetPendingChecks() |
| 713 | { |
nothing calls this directly
no outgoing calls
no test coverage detected