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
Notes: sideshowbarker 2024-07-19 10:25:46 +09:00

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;
});