| 29 | } |
| 30 | |
| 31 | void ConditionVariable::CheckValid() const |
| 32 | { |
| 33 | // __total_seq will be set to -1 by pthread_cond_destroy |
| 34 | assert(m_mutex != NULL && "this cond has been destructed"); |
| 35 | } |
| 36 | |
| 37 | void ConditionVariable::Signal() |
| 38 | { |
nothing calls this directly
no outgoing calls
no test coverage detected