| 25 | thread_local static std::atomic_int s_threadSignal{-1}; //thread specific (non-coroutine) |
| 26 | |
| 27 | inline |
| 28 | ConditionVariable::ConditionVariable() : |
| 29 | _destroyed(false) |
| 30 | {} |
| 31 | |
| 32 | inline |
| 33 | ConditionVariable::~ConditionVariable() |
nothing calls this directly
no outgoing calls
no test coverage detected