X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/1e83888c1aed0b9146b5ae78ad474f374d28a769..9b5c287fbf93c2ae7c3d18c8584647ef9920fe87:/src/kernel/activity/SleepImpl.hpp diff --git a/src/kernel/activity/SleepImpl.hpp b/src/kernel/activity/SleepImpl.hpp index a149ce5c36..ec5c9e271f 100644 --- a/src/kernel/activity/SleepImpl.hpp +++ b/src/kernel/activity/SleepImpl.hpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2007-2017. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2007-2019. 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. */ @@ -7,24 +7,25 @@ #define SIMIX_SYNCHRO_SLEEP_HPP #include "src/kernel/activity/ActivityImpl.hpp" -#include "surf/surf.h" +#include "surf/surf.hpp" namespace simgrid { namespace kernel { namespace activity { -XBT_PUBLIC_CLASS SleepImpl : public ActivityImpl -{ +class XBT_PUBLIC SleepImpl : public ActivityImpl_T { + sg_host_t host_ = nullptr; + double duration_ = 0; + public: - void suspend() override; - void resume() override; + SleepImpl& set_host(s4u::Host* host); + SleepImpl& set_duration(double duration); void post() override; - - sg_host_t host = nullptr; /* The host that is sleeping */ - surf_action_t surf_sleep = nullptr; /* The Surf sleeping action encapsulated */ + void finish() override; + SleepImpl* start(); }; -} -} -} // namespace simgrid::kernel::activity +} // namespace activity +} // namespace kernel +} // namespace simgrid #endif