X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/c66deda6497d36e70e2485fff5431151be1713c6..c0bda26f8216132898999052ea1fdbbe01fd2aa0:/src/surf/cpu_interface.hpp diff --git a/src/surf/cpu_interface.hpp b/src/surf/cpu_interface.hpp index 07aa7ab9e1..f360cf1059 100644 --- a/src/surf/cpu_interface.hpp +++ b/src/surf/cpu_interface.hpp @@ -9,6 +9,8 @@ #include "simgrid/s4u/Host.hpp" #include "src/surf/maxmin_private.hpp" +#include + /*********** * Classes * ***********/ @@ -16,10 +18,6 @@ namespace simgrid { namespace surf { -class CpuModel; -class Cpu; -class CpuAction; - /** @ingroup SURF_cpu_interface * @brief SURF cpu model interface class * @details A model is an object which handle the interactions between its Resources and its Actions @@ -166,6 +164,9 @@ static simgrid::xbt::signal onShareChange; void updateRemainingLazy(double now) override; std::list cpus(); + + void suspend() override; + void resume() override; }; }