| 53 | } |
| 54 | |
| 55 | bool ConditionVariable::TimedWait(int64_t timeout_in_ms) |
| 56 | { |
| 57 | timespec ts; |
| 58 | RelativeMilliSecondsToAbsolute(timeout_in_ms, &ts); |
| 59 | return TOFT_CHECK_PTHREAD_TIMED_ERROR( |
| 60 | pthread_cond_timedwait(&m_cond, &m_mutex->m_mutex, &ts)); |
| 61 | } |
| 62 | |
| 63 | } // namespace toft |
| 64 |
nothing calls this directly
no test coverage detected