Cause this thread to sleep until "Resume" is called
| 62 | |
| 63 | // Cause this thread to sleep until "Resume" is called |
| 64 | void Suspend() |
| 65 | { |
| 66 | m_Pause.WaitForEventForever() ; |
| 67 | } |
| 68 | |
| 69 | // Wake this thread up after a "Suspend" call. |
| 70 | void Resume() |
nothing calls this directly
no test coverage detected