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

Kernel: Remove debug spam about marking threads for death

This commit is contained in:
Andreas Kling 2020-01-02 13:45:22 +01:00
parent 7f843ef3b2
commit 285130cc55

View file

@ -2571,7 +2571,6 @@ void Process::die()
// Tell the threads to unwind and die.
InterruptDisabler disabler;
for_each_thread([](Thread& thread) {
kprintf("Mark PID %u TID %u for death\n", thread.pid(), thread.tid());
thread.set_should_die();
return IterationDecision::Continue;
});