X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/b8df87e176f27b25534f27d7e240defa32ca35bc..ac389dc4950914073f9d0e80703e7593590babb9:/src/xbt/memory_map.hpp diff --git a/src/xbt/memory_map.hpp b/src/xbt/memory_map.hpp index 974b88f879..88807a27fc 100644 --- a/src/xbt/memory_map.hpp +++ b/src/xbt/memory_map.hpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2007-2019. The SimGrid Team. +/* Copyright (c) 2007-2023. The SimGrid Team. * All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it @@ -11,11 +11,7 @@ #include #include -#include -#include - -namespace simgrid { -namespace xbt { +namespace simgrid::xbt { /** An virtual memory map entry from /proc/$pid/maps */ struct VmMap { @@ -30,9 +26,7 @@ struct VmMap { std::string pathname; /* Path name of the mapped file */ }; -XBT_PRIVATE std::vector get_memory_map(pid_t pid); - -} -} +std::vector get_memory_map(pid_t pid); +} // namespace simgrid::xbt #endif