Skip to content

Commit

Permalink
Shell: Remove debug log about child process going away
Browse files Browse the repository at this point in the history
This is still an issue, but its existence isn't helping anyone, so just
remove it.
  • Loading branch information
alimpfard authored and awesomekling committed Jan 4, 2021
1 parent 1c4a425 commit 4adfdb9
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion Shell/Shell.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1564,7 +1564,6 @@ void Shell::notify_child_event()
if (errno == ECHILD) {
// The child process went away before we could process its death, just assume it exited all ok.
// FIXME: This should never happen, the child should stay around until we do the waitpid above.
dbgln("Child process gone, cannot get exit code for {}", job_id);
child_pid = job.pid();
} else {
ASSERT_NOT_REACHED();
Expand Down

0 comments on commit 4adfdb9

Please sign in to comment.