Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'master' of git+ssh://scm.gforge.inria.fr//gitroot/simgrid/simgrid
[simgrid.git] / src / simix / SynchroRaw.hpp
index c0a3444..2b62f87 100644 (file)
@@ -15,8 +15,10 @@ namespace simix {
   /** Used to implement mutexes, semaphores and conditions */
   XBT_PUBLIC_CLASS Raw : public Synchro {
   public:
-    void suspend();
-    void resume();
+    ~Raw() override;
+    void suspend() override;
+    void resume() override;
+    void post() override;
 
     surf_action_t sleep;
   };