mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 06:17:35 +00:00
Shell: Remove debug log about child process going away
This is still an issue, but its existence isn't helping anyone, so just remove it.
This commit is contained in:
parent
1c4a425bff
commit
4adfdb98aa
1 changed files with 0 additions and 1 deletions
|
@ -1564,7 +1564,6 @@ void Shell::notify_child_event()
|
||||||
if (errno == ECHILD) {
|
if (errno == ECHILD) {
|
||||||
// The child process went away before we could process its death, just assume it exited all ok.
|
// 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.
|
// 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();
|
child_pid = job.pid();
|
||||||
} else {
|
} else {
|
||||||
ASSERT_NOT_REACHED();
|
ASSERT_NOT_REACHED();
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue