Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
[simix] Use std::string for s_smx_process_arg
[simgrid.git] / src / simix / SynchroRaw.hpp
index 25d4c2d..7086bd3 100644 (file)
@@ -15,8 +15,9 @@ namespace simix {
   /** Used to implement mutexes, semaphores and conditions */
   XBT_PUBLIC_CLASS Raw : public Synchro {
   public:
-    void suspend();
-    void resume();
+    ~Raw();
+    void suspend() override;
+    void resume() override;
     void post() override;
 
     surf_action_t sleep;