diff --git a/Kernel/Scheduler.cpp b/Kernel/Scheduler.cpp index 2ef7bf728b..f4192d08ca 100644 --- a/Kernel/Scheduler.cpp +++ b/Kernel/Scheduler.cpp @@ -353,7 +353,6 @@ bool Scheduler::pick_next() }); // Dispatch any pending signals. - // FIXME: Do we really need this to be a separate pass over the process list? Thread::for_each_living([](Thread& thread) -> IterationDecision { if (!thread.has_unmasked_pending_signals()) return IterationDecision::Continue;