[Lldb-commits] [lldb] [LLDB][SBSaveCore] Implement a selectable threadlist for Core Options. (PR #100443)

Jacob Lalonde via lldb-commits lldb-commits at lists.llvm.org
Wed Jul 24 13:06:45 PDT 2024


================
@@ -53,6 +53,30 @@ class LLDB_API SBSaveCoreOptions {
   /// \return The output file spec.
   SBFileSpec GetOutputFile() const;
 
+  /// Add a thread to save in the core file.
+  ///
+  /// \param thread_id The thread ID to save.
+  void AddThread(lldb::tid_t thread_id);
----------------
Jlalond wrote:

I think SBThread, because it solves my issue where I'm returning a thread at an index but need to support an error case

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


More information about the lldb-commits mailing list