Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'master' of https://framagit.org/simgrid/simgrid
[simgrid.git] / src / kernel / activity / SleepImpl.hpp
index 9128912..5ab94f8 100644 (file)
@@ -14,12 +14,15 @@ 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(std::move(name)), host_(host) {}
   void post() override;
+  void finish() override;
+  SleepImpl* start(double duration);
 
-  sg_host_t host                 = nullptr;
+  sg_host_t host_ = nullptr;
 };
 }
 }