]> AND Public Git Repository - simgrid.git/blobdiff - src/kernel/timer/Timer.cpp
Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Fix the cleanup. Sorry @agiersch for breaking everything so consistently
[simgrid.git] / src / kernel / timer / Timer.cpp
index f9d85e781b24c56b505c49c071f2e0cb68de739c..93862c6b70a6bffae1d4c8437ea57a88eccea17e 100644 (file)
@@ -1,5 +1,4 @@
-/* Copyright (c) 2021. The SimGrid Team.
- * All rights reserved.                                                     */
+/* Copyright (c) 2021-2022. The SimGrid Team. All rights reserved.          */
 
 /* This program is free software; you can redistribute it and/or modify it
  * under the terms of the license (GNU LGPL) which comes with this package. */
@@ -31,7 +30,6 @@ bool Timer::execute_all()
   bool result = false;
   while (not kernel_timers().empty() && s4u::Engine::get_clock() >= kernel_timers().top().first) {
     result = true;
-    // FIXME: make the timers being real callbacks (i.e. provide dispatchers that read and expand the args)
     Timer* timer = kernel_timers().top().second;
     kernel_timers().pop();
     timer->callback();