| 35 | } |
| 36 | |
| 37 | void ProcessTracker::FlushFrames() |
| 38 | { |
| 39 | assert(!Empty()); |
| 40 | if (auto sta = pmFlushFrames(hSession_, pid_); sta != PM_STATUS_SUCCESS) { |
| 41 | throw ApiErrorException{ sta, "flush frames call failed" }; |
| 42 | } |
| 43 | } |
| 44 | |
| 45 | void ProcessTracker::Reset() noexcept |
| 46 | { |
no test coverage detected