Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Kill a now unused class in mc
authorMartin Quinson <martin.quinson@ens-rennes.fr>
Sun, 19 Mar 2023 11:09:07 +0000 (12:09 +0100)
committerMartin Quinson <martin.quinson@ens-rennes.fr>
Sun, 19 Mar 2023 11:09:07 +0000 (12:09 +0100)
src/mc/mc_forward.hpp
src/mc/sosp/RemoteProcessMemory.hpp

index b9da6df..45fefd7 100644 (file)
@@ -25,7 +25,6 @@ class Type;
 class Variable;
 class Transition;
 class Frame;
-class ActorInformation;
 
 class Session;
 class Exploration;
index bb2d04a..51e477d 100644 (file)
 
 namespace simgrid::mc {
 
-class ActorInformation {
-public:
-  /** MCed address of the process */
-  RemotePtr<kernel::actor::ActorImpl> address{nullptr};
-  Remote<kernel::actor::ActorImpl> copy;
-
-  /** Hostname (owned by `mc_model_checker->hostnames_`) */
-  const std::string* hostname = nullptr;
-  std::string name;
-
-  void clear()
-  {
-    name.clear();
-    address  = nullptr;
-    hostname = nullptr;
-  }
-};
-
 struct IgnoredRegion {
   std::uint64_t addr;
   std::size_t size;