[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


================
@@ -152,7 +152,7 @@ struct DAP {
   llvm::DenseSet<ClientFeature> clientFeatures;
 
   /// The initial thread list upon attaching.
-  std::optional<llvm::json::Array> initial_thread_list;
+  std::optional<std::vector<protocol::Thread>> initial_thread_list;
----------------
JDevlieghere wrote:

Is it worth distinguishing between an empty list and not having the list at all?

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


More information about the lldb-commits mailing list