| 79 | static bool IsThreadSuspended(DWORD tid); |
| 80 | |
| 81 | void JoinThread() { if(t.joinable()) t.join(); } //since the copy assignment is deleted in std::thread we can't do std::thread getThreadObject() |
| 82 | |
| 83 | HANDLE GetHandle() const { return this->handle; } |
| 84 | DWORD GetId() const { return this->Id; } |
no outgoing calls
no test coverage detected