[Lldb-commits] [lldb] [lldb-dap] Migrating 'threads' request to structured types. (PR #142510)
Jonas Devlieghere via lldb-commits
lldb-commits at lists.llvm.org
Wed Jun 4 15:06:50 PDT 2025
================
@@ -414,6 +414,16 @@ bool fromJSON(const llvm::json::Value &, SteppingGranularity &,
llvm::json::Path);
llvm::json::Value toJSON(const SteppingGranularity &);
+/// A Thread.
+struct Thread {
+ /// Unique identifier for the thread.
+ lldb::tid_t id;
----------------
JDevlieghere wrote:
Should this default to `LLDB_INVALID_THREAD_ID`?
https://github.com/llvm/llvm-project/pull/142510
More information about the lldb-commits
mailing list