MCPcopy Create free account
hub / github.com/chen3feng/toft / Join

Method Join

system/threading/base_thread.cpp:85–92  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

83}
84
85bool 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
94int BaseThread::GetId() const
95{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected