| 1657 | } |
| 1658 | |
| 1659 | Profiler* WinDebugger::PopProfiler() |
| 1660 | { |
| 1661 | AutoCrit autoCrit(mDebugManager->mCritSect); |
| 1662 | if (mNewProfilerList.IsEmpty()) |
| 1663 | return NULL; |
| 1664 | auto profiler = (DbgProfiler*)mNewProfilerList[0]; |
| 1665 | mNewProfilerList.erase(mNewProfilerList.begin()); |
| 1666 | return profiler; |
| 1667 | } |
| 1668 | |
| 1669 | void WinDebugger::AddProfiler(DbgProfiler * profiler) |
| 1670 | { |
no test coverage detected