X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/fe304706848f0a64477d4687b3ea97d5b9a0c35c..49c5a6cf5ad0b5cab623499ba1b4505cd367e452:/src/mc/mc_mmu.hpp?ds=sidebyside diff --git a/src/mc/mc_mmu.hpp b/src/mc/mc_mmu.hpp index 21975e67fb..d1c2e02bfd 100644 --- a/src/mc/mc_mmu.hpp +++ b/src/mc/mc_mmu.hpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2014-2019. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2014-2022. The SimGrid Team. All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it * under the terms of the license (GNU LGPL) which comes with this package. */ @@ -18,15 +18,8 @@ extern "C" int xbt_pagesize; /** Number of bits of addresses inside a given page, log2(xbt_pagesize). */ extern "C" int xbt_pagebits; -namespace simgrid { -namespace mc { +namespace simgrid::mc::mmu { // TODO, do not depend on xbt_pagesize/xbt_pagebits but our own chunk size -namespace mmu { - -static int chunk_size() -{ - return xbt_pagesize; -} /** @brief How many memory pages are necessary to store size bytes? * @@ -62,8 +55,6 @@ static XBT_ALWAYS_INLINE bool same_chunk(std::uintptr_t a, std::uintptr_t b) { return (a >> xbt_pagebits) == (b >> xbt_pagebits); } -} -} -} +} // namespace simgrid::mc::mmu #endif