[Lldb-commits] [PATCH] D130341: [lldb] [gdb-remote] Use vKill packet if multiprocess & available
Pavel Labath via Phabricator via lldb-commits
lldb-commits at lists.llvm.org
Wed Jul 27 06:20:35 PDT 2022
labath added inline comments.
================
Comment at: lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.cpp:4268
+ if (response.IsOKResponse())
+ return SIGKILL;
+
----------------
This is a host signal number (and not really available on windows). Maybe we should just return zero or indicate that we don't know the "cause of death" in some other way? (Are we sure that there's no way to determine the cause of death?)
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D130341/new/
https://reviews.llvm.org/D130341
More information about the lldb-commits
mailing list