| 17 | namespace toft { |
| 18 | |
| 19 | ConditionVariable::ConditionVariable(internal::MutexBase* mutex) |
| 20 | { |
| 21 | TOFT_CHECK_PTHREAD_ERROR(pthread_cond_init(&m_cond, NULL)); |
| 22 | m_mutex = mutex; |
| 23 | } |
| 24 | |
| 25 | ConditionVariable::~ConditionVariable() |
| 26 | { |
nothing calls this directly
no outgoing calls
no test coverage detected