1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-03 05:32:13 +00:00

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

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;