[Lldb-commits] [lldb] [lldb] Introduce ScriptedFrameProvider for real threads (PR #161870)

Jonas Devlieghere via lldb-commits lldb-commits at lists.llvm.org
Fri Nov 7 11:01:55 PST 2025


================
@@ -211,18 +212,20 @@ class StackFrameList {
   /// Whether or not to show synthetic (inline) frames. Immutable.
   const bool m_show_inlined_frames;
 
+  /// These two Fetch frames APIs and SynthesizeTailCallFrames are called in
+  /// GetFramesUpTo, they are the ones that actually add frames.  They must be
+  /// called with the writer end of the list mutex held.
----------------
JDevlieghere wrote:

Use a Doxygen group (https://www.doxygen.nl/manual/grouping.html)

```
/// @{
[...]
/// @}
```

https://github.com/llvm/llvm-project/pull/161870


More information about the lldb-commits mailing list