[Lldb-commits] [lldb] [LLDB] Ptrace seize dead process (PR #137041)

David Spickett via lldb-commits lldb-commits at lists.llvm.org
Thu May 1 08:40:11 PDT 2025


================
@@ -1304,6 +1304,9 @@ void GDBRemoteCommunicationServerCommon::
     if (!abi.empty())
       response.Printf("elf_abi:%s;", abi.c_str());
     response.Printf("ptrsize:%d;", proc_arch.GetAddressByteSize());
+    std::optional<bool> non_resumable = proc_info.IsNonResumable();
+    if (non_resumable)
+      response.Printf("non_resumable:%d", *non_resumable);
----------------
DavidSpickett wrote:

Cool, so something would get added to the remote protocol to make this work but exactly what we can decide later.

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


More information about the lldb-commits mailing list