Kernel: Remove outdated FIXME from Scheduler

This commit is contained in:
Andreas Kling 2020-02-10 20:15:53 +01:00
parent 27f0102bbe
commit 7cf33a8ccb
Notes: sideshowbarker 2024-07-19 09:27:28 +09:00

View File

@ -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;