X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/39c935d6d5ee86d153f6f7e6a10d723ae7c57f6f..17288b1b642b369a5377677875d08a82d37a5f67:/src/mc/sosp/Snapshot.hpp diff --git a/src/mc/sosp/Snapshot.hpp b/src/mc/sosp/Snapshot.hpp index 35865cdcb6..bc658e5026 100644 --- a/src/mc/sosp/Snapshot.hpp +++ b/src/mc/sosp/Snapshot.hpp @@ -8,7 +8,7 @@ #include "src/mc/ModelChecker.hpp" #include "src/mc/inspect/mc_unw.hpp" -#include "src/mc/remote/RemoteSimulation.hpp" +#include "src/mc/remote/RemoteProcess.hpp" #include "src/mc/sosp/Region.hpp" // ***** MC Snapshot @@ -60,13 +60,12 @@ namespace mc { class XBT_PRIVATE Snapshot final : public AddressSpace { public: /* Initialization */ - Snapshot(int num_state, RemoteSimulation* get_remote_simulation = &mc_model_checker->get_remote_simulation()); - ~Snapshot() override = default; + Snapshot(int num_state, RemoteProcess* process = &mc_model_checker->get_remote_process()); /* Regular use */ bool on_heap(const void* address) const { - const s_xbt_mheap_t* heap = get_remote_simulation()->get_heap(); + const s_xbt_mheap_t* heap = get_remote_process()->get_heap(); return address >= heap->heapbase && address < heap->breakval; } @@ -74,7 +73,7 @@ public: ReadOptions options = ReadOptions::none()) const override; Region* get_region(const void* addr) const; Region* get_region(const void* addr, Region* hinted_region) const; - void restore(RemoteSimulation* get_remote_simulation) const; + void restore(RemoteProcess* process) const; // To be private int num_state_; @@ -89,8 +88,8 @@ public: private: void add_region(RegionType type, ObjectInformation* object_info, void* start_addr, std::size_t size); - void snapshot_regions(RemoteSimulation* get_remote_simulation); - void snapshot_stacks(RemoteSimulation* get_remote_simulation); + void snapshot_regions(RemoteProcess* process); + void snapshot_stacks(RemoteProcess* process); }; } // namespace mc } // namespace simgrid