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 c0942d82dc61a40db359e5ae339822131130a21f..4c0269c931a70a2d3d2f0252be4e679b14bf3e6f 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (c) 2016-2021. The SimGrid Team. All rights reserved.          */
+/* Copyright (c) 2016-2022. The SimGrid Team. All rights reserved.          */
 
 /* This program is free software; you can redistribute it and/or modify it
  * under the terms of the license (GNU LGPL) which comes with this package. */
@@ -8,6 +8,7 @@
 
 #include "simgrid/forward.h"
 #include "src/mc/ModelChecker.hpp"
+#include "src/mc/remote/RemotePtr.hpp"
 
 #include <functional>
 
@@ -44,17 +45,19 @@ public:
   ~Session();
   void close();
 
-  void initialize();
-  void execute(Transition const& transition) const;
+  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;
-
+extern std::unique_ptr<simgrid::mc::Session> session_singleton;
 }
 }