| 105 | ThreadHandle& operator=(const Thread& handle) = delete; |
| 106 | |
| 107 | __fi bool Joinable() const { return (m_native_handle != nullptr); } |
| 108 | __fi u32 GetStackSize() const { return m_stack_size; } |
| 109 | |
| 110 | /// Sets the stack size for the thread. Do not call if the thread has already been started. |
no outgoing calls
no test coverage detected