X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/5fbb3fe0fdfdf731e46c9ef6a80de1d66a9d729c..2dab73b61a6ad4feb7d2d267bf5621c7b95926b3:/src/mc/AddressSpace.hpp diff --git a/src/mc/AddressSpace.hpp b/src/mc/AddressSpace.hpp index 00be2d0e56..34b47a219e 100644 --- a/src/mc/AddressSpace.hpp +++ b/src/mc/AddressSpace.hpp @@ -84,17 +84,17 @@ public: */ class AddressSpace { private: - RemoteClientMemory* process_; + RemoteSimulation* remote_simulation_; public: - explicit AddressSpace(RemoteClientMemory* process) : process_(process) {} + explicit AddressSpace(RemoteSimulation* remote_simulation) : remote_simulation_(remote_simulation) {} virtual ~AddressSpace() = default; /** The process of this address space * * This is where we can get debug informations, memory layout, etc. */ - simgrid::mc::RemoteClientMemory* process() const { return process_; } + simgrid::mc::RemoteSimulation* get_remote_simulation() const { return remote_simulation_; } /** Read data from the address space *