Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Kill a now useless variable
authorMartin Quinson <martin.quinson@ens-rennes.fr>
Sun, 31 Jul 2022 14:45:50 +0000 (16:45 +0200)
committerMartin Quinson <martin.quinson@ens-rennes.fr>
Sun, 31 Jul 2022 14:45:50 +0000 (16:45 +0200)
src/mc/remote/RemoteProcess.cpp
src/mc/remote/RemoteProcess.hpp

index 2256c47..ac1e9b2 100644 (file)
@@ -117,7 +117,6 @@ void RemoteProcess::init(xbt_mheap_t mmalloc_default_mdp, unsigned long* maxpid)
   xbt_assert(fd >= 0, "Could not open file for process virtual address space");
   this->memory_file = fd;
 
-  this->smx_actors_infos.clear();
   this->unw_addr_space            = simgrid::mc::UnwindContext::createUnwindAddressSpace();
   this->unw_underlying_addr_space = simgrid::unw::create_addr_space();
   this->unw_underlying_context    = simgrid::unw::create_context(this->unw_underlying_addr_space, this->pid_);
index 924aa56..b2c7558 100644 (file)
@@ -184,13 +184,6 @@ private:
   std::vector<s_stack_region_t> stack_areas_;
   std::vector<IgnoredHeapRegion> ignored_heap_;
 
-  // Copies of MCed SMX data structures
-  /** Copy of `EngineImpl::actor_list_`
-   *
-   *  See mc_smx.cpp.
-   */
-  std::vector<ActorInformation> smx_actors_infos;
-
   /** State of the cache (which variables are up to date) */
   int cache_flags_ = RemoteProcess::cache_none;