| 26 | } |
| 27 | |
| 28 | void cmDebuggerThread::PushStackFrame(cmMakefile* mf, |
| 29 | std::string const& sourcePath, |
| 30 | cmListFileFunction const& lff) |
| 31 | { |
| 32 | std::unique_lock<std::mutex> lock(Mutex); |
| 33 | Frames.emplace_back( |
| 34 | std::make_shared<cmDebuggerStackFrame>(mf, sourcePath, lff)); |
| 35 | FrameMap.insert({ Frames.back()->GetId(), Frames.back() }); |
| 36 | } |
| 37 | |
| 38 | void cmDebuggerThread::PopStackFrame() |
| 39 | { |