| 647 | |
| 648 | |
| 649 | void StartOutputThread(PMTraceSession const& pmSession) |
| 650 | { |
| 651 | InitializeCriticalSection(&gRecordingToggleCS); |
| 652 | gQuit = false; |
| 653 | gThread = std::thread(Output, &pmSession); // Doesn't work to pass a reference, it makes a copy |
| 654 | } |
| 655 | |
| 656 | void StopOutputThread() |
| 657 | { |
no outgoing calls
no test coverage detected