Blocks until this thread finishes execution. Once this method returns, the thread will be unregistered with the ThreadMgr and will not appear in the debug UI.
| 117 | /// Blocks until this thread finishes execution. Once this method returns, the thread |
| 118 | /// will be unregistered with the ThreadMgr and will not appear in the debug UI. |
| 119 | void Join() const { thread_->join(); } |
| 120 | |
| 121 | /// Detaches the underlying thread from this Thread object. It's illegal to call |
| 122 | /// Join() after calling Detach(). When the underlying thread finishes execution, |