| 83 | } |
| 84 | |
| 85 | bool BaseThread::Join() |
| 86 | { |
| 87 | assert(IsJoinable()); |
| 88 | TOFT_CHECK_PTHREAD_ERROR(pthread_join(m_handle, NULL)); |
| 89 | m_handle = pthread_t(); |
| 90 | m_id = -1; |
| 91 | return true; |
| 92 | } |
| 93 | |
| 94 | int BaseThread::GetId() const |
| 95 | { |
nothing calls this directly
no outgoing calls
no test coverage detected