X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/89177ffe887f43365370730f5293ce74d8c138c0..fa84bee017477630eea9a93890e0e2abf3855bf9:/src/mc/sosp/Snapshot.hpp?ds=sidebyside diff --git a/src/mc/sosp/Snapshot.hpp b/src/mc/sosp/Snapshot.hpp index a39b0d0e1f..bc658e5026 100644 --- a/src/mc/sosp/Snapshot.hpp +++ b/src/mc/sosp/Snapshot.hpp @@ -60,7 +60,7 @@ namespace mc { class XBT_PRIVATE Snapshot final : public AddressSpace { public: /* Initialization */ - Snapshot(int num_state, RemoteProcess* get_remote_simulation = &mc_model_checker->get_remote_process()); + Snapshot(int num_state, RemoteProcess* process = &mc_model_checker->get_remote_process()); /* Regular use */ bool on_heap(const void* address) const @@ -73,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(RemoteProcess* get_remote_simulation) const; + void restore(RemoteProcess* process) const; // To be private int num_state_; @@ -88,8 +88,8 @@ public: private: void add_region(RegionType type, ObjectInformation* object_info, void* start_addr, std::size_t size); - void snapshot_regions(RemoteProcess* get_remote_simulation); - void snapshot_stacks(RemoteProcess* get_remote_simulation); + void snapshot_regions(RemoteProcess* process); + void snapshot_stacks(RemoteProcess* process); }; } // namespace mc } // namespace simgrid