[Lldb-commits] [lldb] [lldb][Target] Clear selected frame index after a StopInfo::PerformAction (PR #133078)
via lldb-commits
lldb-commits at lists.llvm.org
Thu Mar 27 09:55:59 PDT 2025
================
@@ -936,3 +936,7 @@ size_t StackFrameList::GetStatus(Stream &strm, uint32_t first_frame,
strm.IndentLess();
return num_frames_displayed;
}
+
+void StackFrameList::ClearSelectedFrameIndex() {
----------------
jimingham wrote:
I'm not sure what we'd do if two parts of lldb decided they wanted to be in control of the selected frame index on stop. That seems like a bad idea, but I'm not sure the right way to fix it would be just to lock the selected frame index just at the point of setting it. There would need to be some explicit negotiation for who gets to control this.
https://github.com/llvm/llvm-project/pull/133078
More information about the lldb-commits
mailing list