[Lldb-commits] [lldb] [lldb-dap] Migrating 'threads' request to structured types. (PR #142510)
John Harrison via lldb-commits
lldb-commits at lists.llvm.org
Wed Jun 4 16:56:40 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;
----------------
ashgti wrote:
Done.
https://github.com/llvm/llvm-project/pull/142510
More information about the lldb-commits
mailing list