[Lldb-commits] [PATCH] D149717: [lldb] Make some functions useful to REPLs public

Jonas Devlieghere via Phabricator via lldb-commits lldb-commits at lists.llvm.org
Thu May 4 09:31:43 PDT 2023


JDevlieghere added inline comments.


================
Comment at: lldb/include/lldb/Core/Debugger.h:505
+  /// that directly use the \a lldb_private namespace and want to use the
+  /// default LLDB event handler thread instead of defining their own.
+  bool StartEventHandlerThread();
----------------



================
Comment at: lldb/include/lldb/Core/Debugger.h:508-509
+
+  /// Stop the global event handler thread. It should only be used by programs
+  /// that manually invoked \a Debugger::StartEventHandlerThread().
+  void StopEventHandlerThread();
----------------
`used by programs` is rather vague.


================
Comment at: lldb/include/lldb/Core/Debugger.h:512
+
+  /// Force flushing the process's pending stdout and stderr to the debuggers'
+  /// asynchronous stdout and stderr streams.
----------------



Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D149717/new/

https://reviews.llvm.org/D149717



More information about the lldb-commits mailing list