X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/45ae0195c6ad8232415288c5da07b4bdc23a31b4:/src/kernel/activity/SynchroSleep.hpp..1e83888c1aed0b9146b5ae78ad474f374d28a769:/src/kernel/activity/SleepImpl.hpp diff --git a/src/kernel/activity/SynchroSleep.hpp b/src/kernel/activity/SleepImpl.hpp similarity index 56% rename from src/kernel/activity/SynchroSleep.hpp rename to src/kernel/activity/SleepImpl.hpp index aca0471ef7..a149ce5c36 100644 --- a/src/kernel/activity/SynchroSleep.hpp +++ b/src/kernel/activity/SleepImpl.hpp @@ -6,23 +6,25 @@ #ifndef SIMIX_SYNCHRO_SLEEP_HPP #define SIMIX_SYNCHRO_SLEEP_HPP -#include "surf/surf.h" #include "src/kernel/activity/ActivityImpl.hpp" +#include "surf/surf.h" namespace simgrid { namespace kernel { namespace activity { - XBT_PUBLIC_CLASS Sleep : public ActivityImpl { - public: - void suspend() override; - void resume() override; - void post() override; - - sg_host_t host = nullptr; /* The host that is sleeping */ - surf_action_t surf_sleep = nullptr; /* The Surf sleeping action encapsulated */ - }; - -}}} // namespace simgrid::kernel::activity +XBT_PUBLIC_CLASS SleepImpl : public ActivityImpl +{ +public: + void suspend() override; + void resume() override; + void post() override; + + sg_host_t host = nullptr; /* The host that is sleeping */ + surf_action_t surf_sleep = nullptr; /* The Surf sleeping action encapsulated */ +}; +} +} +} // namespace simgrid::kernel::activity #endif