X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/7a3a100990355eb757dc81106b5aac6daed0b8e1..791d2a621277a221aa84be5602565208ca441f44:/src/kernel/activity/SleepImpl.hpp diff --git a/src/kernel/activity/SleepImpl.hpp b/src/kernel/activity/SleepImpl.hpp index 2713736353..eab5d22de5 100644 --- a/src/kernel/activity/SleepImpl.hpp +++ b/src/kernel/activity/SleepImpl.hpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2007-2018. 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. */ @@ -14,13 +14,14 @@ namespace kernel { namespace activity { class XBT_PUBLIC SleepImpl : public ActivityImpl { + ~SleepImpl() override; + public: - void suspend() override; - void resume() override; + explicit SleepImpl(std::string name, s4u::Host* host) : ActivityImpl(name), host_(host) {} void post() override; + SleepImpl* start(double duration); - sg_host_t host = nullptr; /* The host that is sleeping */ - simgrid::kernel::resource::Action* surf_sleep = nullptr; /* The Surf sleeping action encapsulated */ + sg_host_t host_ = nullptr; }; } }