[Lldb-commits] [lldb] [lldb] Fix missing overloads in ThreadMemory (PR #132734)

via lldb-commits lldb-commits at lists.llvm.org
Mon Mar 24 14:12:34 PDT 2025


================
@@ -13,14 +13,14 @@
 
 #include "lldb/Target/Thread.h"
 
+/// A memory thread optionally backed by a real thread.
+/// All methods of this class dispatch to the real thread, if it is not null.
+/// Otherwise the methods are no-op.
----------------
jimingham wrote:

This isn't 100% true, the MemoryThread has a different TID from the backing thread (sometimes providing a stable TID is the ONLY job the MemoryThread is doing.

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


More information about the lldb-commits mailing list