Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Ensure that MC session and checker are deleted.
[simgrid.git] / src / mc / Session.hpp
index 53161e13bc4c772306750e47af813cf4972134cb..4c0269c931a70a2d3d2f0252be4e679b14bf3e6f 100644 (file)
@@ -46,14 +46,18 @@ public:
   void close();
 
   void take_initial_snapshot();
+  void restore_initial_state() const;
+
+  /** Ask to the application to check for a deadlock. If so, do an error message and throw a DeadlockError. */
+  void check_deadlock() const;
+
   void log_state() const;
 
-  void restore_initial_state() const;
   bool actor_is_enabled(aid_t pid) const;
 };
 
 // Temporary :)
-extern simgrid::mc::Session* session_singleton;
+extern std::unique_ptr<simgrid::mc::Session> session_singleton;
 }
 }