[Lldb-commits] [lldb] [lldb][AIX] Added Kill() implementation (PR #169454)
David Spickett via lldb-commits
lldb-commits at lists.llvm.org
Fri Dec 19 07:18:57 PST 2025
================
@@ -137,6 +137,12 @@ void NativeProcessAIX::Manager::SigchldHandler() {
auto wait_result = WaitPid();
if (!wait_result)
return;
+ lldb::pid_t pid = wait_result->first;
+ WaitStatus status = wait_result->second;
+
+ llvm::any_of(m_processes, [&](NativeProcessAIX *process) {
+ return process->TryHandleWaitStatus(pid, status);
+ });
----------------
DavidSpickett wrote:
How does this relate to kill? It seems unfinished, the return value of any_of is not used.
https://github.com/llvm/llvm-project/pull/169454
More information about the lldb-commits
mailing list