From 285130cc550bc6a2f917a8353fcfaa5a0f131c92 Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Thu, 2 Jan 2020 13:45:22 +0100 Subject: [PATCH] Kernel: Remove debug spam about marking threads for death --- Kernel/Process.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/Kernel/Process.cpp b/Kernel/Process.cpp index 0666794290..2300eda511 100644 --- a/Kernel/Process.cpp +++ b/Kernel/Process.cpp @@ -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; });