| 107 | } |
| 108 | |
| 109 | void block(int status) { |
| 110 | std::unique_lock<std::mutex> lock(m_mutex); |
| 111 | emit blocked(status); |
| 112 | m_cv.wait(lock); |
| 113 | } |
| 114 | |
| 115 | static constexpr size_t PerfArraySize = 20; |
| 116 |
nothing calls this directly
no outgoing calls
no test coverage detected