1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 12:38:12 +00:00

Let the "reaped unparented process" messages go straight to the debugger.

This commit is contained in:
Andreas Kling 2019-01-01 03:56:39 +01:00
parent eb78238032
commit 7731aef7b2

View file

@ -78,7 +78,7 @@ bool Scheduler::pick_next()
auto name = process.name();
auto pid = process.pid();
auto exit_status = Process::reap(process);
kprintf("reaped unparented process %s(%u), exit status: %u\n", name.characters(), pid, exit_status);
dbgprintf("reaped unparented process %s(%u), exit status: %u\n", name.characters(), pid, exit_status);
}
return true;
}