| 1199 | } |
| 1200 | |
| 1201 | ProfilerManager* Attachment::getProfilerManager(thread_db* tdbb) |
| 1202 | { |
| 1203 | auto profilerManager = att_profiler_manager.get(); |
| 1204 | if (!profilerManager) |
| 1205 | att_profiler_manager.reset(profilerManager = ProfilerManager::create(tdbb)); |
| 1206 | return profilerManager; |
| 1207 | } |
| 1208 | |
| 1209 | ProfilerManager* Attachment::getActiveProfilerManagerForNonInternalStatement(thread_db* tdbb) |
| 1210 | { |
no test coverage detected