Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
actors on failing hosts should die silently and with no delay
[simgrid.git] / src / kernel / activity / SynchroRaw.hpp
index 2459efe..9ed5cf9 100644 (file)
@@ -16,14 +16,14 @@ namespace activity {
   /** Used to implement mutexes, semaphores and conditions */
 class XBT_PUBLIC RawImpl : public ActivityImpl {
 public:
-  ~RawImpl() override;
+  RawImpl* start(s4u::Host* host, double timeout);
   void suspend() override;
   void resume() override;
   void post() override;
-
-  resource::Action* surf_action_ = nullptr;
-  };
-
-}}} // namespace simgrid::kernel::activity
+  void finish() override;
+};
+} // namespace activity
+} // namespace kernel
+} // namespace simgrid
 
 #endif