[Lldb-commits] [lldb] Convert the StackFrameList mutex to a shared mutex. (PR #117252)
via lldb-commits
lldb-commits at lists.llvm.org
Tue Dec 10 11:12:14 PST 2024
================
@@ -803,13 +819,12 @@ uint32_t StackFrameList::SetSelectedFrame(lldb_private::StackFrame *frame) {
break;
}
}
-
SetDefaultFileAndLineToSelectedFrame();
- return *m_selected_frame_idx;
+ result = *m_selected_frame_idx;
----------------
jimingham wrote:
That was left over from a previous refactoring.
https://github.com/llvm/llvm-project/pull/117252
More information about the lldb-commits
mailing list