diff --git a/Kernel/Syscalls/waitid.cpp b/Kernel/Syscalls/waitid.cpp index 1b12c2a744f..f4d6f9c7ad2 100644 --- a/Kernel/Syscalls/waitid.cpp +++ b/Kernel/Syscalls/waitid.cpp @@ -86,6 +86,7 @@ KResultOr Process::do_waitid(idtype_t idtype, int id, int options) case Thread::State::Runnable: case Thread::State::Blocked: case Thread::State::Dying: + case Thread::State::Dead: case Thread::State::Queued: siginfo.si_code = CLD_CONTINUED; break;