[Lldb-commits] [lldb] Fix a stall in running `quit` while a live process is running (PR #74687)

Alex Langford via lldb-commits lldb-commits at lists.llvm.org
Thu Dec 7 10:24:01 PST 2023


================
@@ -558,7 +558,10 @@ class Process : public std::enable_shared_from_this<Process>,
   ///
   /// Subclasses that override this method should always call this superclass
   /// method.
-  virtual void Finalize();
+  /// If you are running Finalize in your Process subclass Destructor, pass
+  /// \btrue.  If we are in the destructor, shared_from_this will no longer
----------------
bulbazord wrote:

`\btrue` -> `\b true`


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


More information about the lldb-commits mailing list