From 7cf33a8ccb62241894f1a0844761761bd33e7128 Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Mon, 10 Feb 2020 20:15:53 +0100 Subject: [PATCH] Kernel: Remove outdated FIXME from Scheduler --- Kernel/Scheduler.cpp | 1 - 1 file changed, 1 deletion(-) 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;