Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
cosmetics from patch review
[simgrid.git] / src / simix / SynchroSleep.hpp
index 8e4b9a1..46a25aa 100644 (file)
@@ -6,6 +6,7 @@
 #ifndef _SIMIX_SYNCHRO_SLEEP_HPP
 #define _SIMIX_SYNCHRO_SLEEP_HPP
 
+#include "surf/surf.h"
 #include "src/simix/Synchro.h"
 
 namespace simgrid {
@@ -13,8 +14,12 @@ namespace simix {
 
   XBT_PUBLIC_CLASS Sleep : public Synchro {
   public:
-    sg_host_t host;                /* The host that is sleeping */
-    surf_action_t surf_sleep;       /* The Surf sleeping action encapsulated */
+    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::simix