X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/9ec5b7998f76abfec0e52457dd2c17a4ef0c88fc..ea74f5d95928a521a588737e81f1de94eef25d19:/src/kernel/timer/Timer.cpp diff --git a/src/kernel/timer/Timer.cpp b/src/kernel/timer/Timer.cpp index df005caac9..5cc19ee376 100644 --- a/src/kernel/timer/Timer.cpp +++ b/src/kernel/timer/Timer.cpp @@ -1,11 +1,11 @@ -/* Copyright (c) 2021. The SimGrid Team. +/* 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. */ #include -#include +#include namespace simgrid { namespace kernel { @@ -29,7 +29,7 @@ void Timer::remove() bool Timer::execute_all() { bool result = false; - while (not kernel_timers().empty() && SIMIX_get_clock() >= kernel_timers().top().first) { + 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;