Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Make SIMIX_context_new() accept std::function
[simgrid.git] / src / simix / SynchroExec.hpp
index d24af4f..20d26f8 100644 (file)
@@ -13,9 +13,11 @@ namespace simgrid {
 namespace simix {
 
   XBT_PUBLIC_CLASS Exec : public Synchro {
+    ~Exec();
   public:
-    void suspend();
-    void resume();
+    void suspend() override;
+    void resume() override;
+    void post() override;
     double remains();
 
     sg_host_t host;                /* The host where the execution takes place */