| 18 | } |
| 19 | |
| 20 | void ThreadHelper::Stop() |
| 21 | { |
| 22 | if (tHandle) { |
| 23 | SetEvent(tEvent); |
| 24 | WaitForSingleObject(tHandle, delay << 2); |
| 25 | CloseHandle(tHandle); |
| 26 | tHandle = NULL; |
| 27 | } |
| 28 | } |
| 29 | |
| 30 | void ThreadHelper::Start() |
| 31 | { |
nothing calls this directly
no outgoing calls
no test coverage detected