X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/a816142ba29faddef700304e151716780d431d20..9692d43fa911bdc2d6d0263a3cb3e22d5e3167fe:/src/mc/PageStore.hpp diff --git a/src/mc/PageStore.hpp b/src/mc/PageStore.hpp index 36c90d002c..979e02fb5d 100644 --- a/src/mc/PageStore.hpp +++ b/src/mc/PageStore.hpp @@ -15,8 +15,8 @@ #include -#include "mc_mmu.h" -#include "mc_forward.hpp" +#include "src/mc/mc_mmu.h" +#include "src/mc/mc_forward.hpp" namespace simgrid { namespace mc { @@ -24,9 +24,9 @@ namespace mc { /** @brief Storage for snapshot memory pages * * The first (lower) layer of the per-page snapshot mechanism is a page - * store: it's responsibility is to store immutable shareable - * reference-counted memory pages independently of the snapshoting - * logic. Snapshot management and representation, soft-dirty tracking is + * store: its responsibility is to store immutable shareable + * reference-counted memory pages independently of the snapshotting + * logic. Snapshot management and representation is * handled to an higher layer. READMORE * * Data structure: @@ -174,7 +174,7 @@ void PageStore::ref_page(size_t pageno) inline __attribute__((always_inline)) const void* PageStore::get_page(std::size_t pageno) const { - return mc_page_from_number(this->memory_, pageno); + return (void*) simgrid::mc::mmu::join(pageno, (std::uintptr_t) this->memory_); } inline __attribute__((always_inline))