| 609 | } |
| 610 | |
| 611 | void ProfilerManager::cancelSession() |
| 612 | { |
| 613 | if (currentSession) |
| 614 | { |
| 615 | LogLocalStatus status("Profiler cancelSession"); |
| 616 | |
| 617 | currentSession->pluginSession->cancel(&status); |
| 618 | currentSession = nullptr; |
| 619 | } |
| 620 | } |
| 621 | |
| 622 | void ProfilerManager::finishSession(thread_db* tdbb, bool flushData) |
| 623 | { |
no test coverage detected