Detaches the underlying thread from this Thread object. It's illegal to call Join() after calling Detach(). When the underlying thread finishes execution, it unregisters itself from the ThreadMgr.
| 122 | /// Join() after calling Detach(). When the underlying thread finishes execution, |
| 123 | /// it unregisters itself from the ThreadMgr. |
| 124 | void Detach() const { thread_->detach(); } |
| 125 | |
| 126 | /// The thread ID assigned to this thread by the operating system. If the OS does not |
| 127 | /// support retrieving the tid, returns Thread::INVALID_THREAD_ID. |
no outgoing calls
no test coverage detected