[Lldb-commits] [lldb] [lldb-dap] Fix core file stop reason overriden to "entry" (PR #195352)

Jacob Lalonde via lldb-commits lldb-commits at lists.llvm.org
Fri May 1 13:54:17 PDT 2026


================
@@ -121,6 +121,7 @@ struct DAP final : public DAPTransport::MessageHandler {
   llvm::once_flag terminated_event_flag;
   bool stop_at_entry = false;
   bool is_attach = false;
+  bool is_core_file = false;
----------------
Jlalond wrote:

To better mirror lldb, I think we might to name this `is_live_session` to better mirror [IsLiveDebugSession()](https://github.com/llvm/llvm-project/blob/2548c010b0c866d3e1f1c398dfff228e33f4563c/lldb/include/lldb/Target/Process.h#L1534)

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


More information about the lldb-commits mailing list