Bläddra i källkod

Kernel: Remove outdated FIXME from Scheduler

Andreas Kling 5 år sedan
förälder
incheckning
7cf33a8ccb
1 ändrade filer med 0 tillägg och 1 borttagningar
  1. 0 1
      Kernel/Scheduler.cpp

+ 0 - 1
Kernel/Scheduler.cpp

@@ -353,7 +353,6 @@ bool Scheduler::pick_next()
     });
     });
 
 
     // Dispatch any pending signals.
     // 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 {
     Thread::for_each_living([](Thread& thread) -> IterationDecision {
         if (!thread.has_unmasked_pending_signals())
         if (!thread.has_unmasked_pending_signals())
             return IterationDecision::Continue;
             return IterationDecision::Continue;