Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Missing include (HAVE_MREMAP).
[simgrid.git] / src / mc / sosp / PageStore.cpp
index e9a7fc1..6cb9b5e 100644 (file)
@@ -1,26 +1,23 @@
-/* Copyright (c) 2015-2018. The SimGrid Team. All rights reserved.          */
+/* Copyright (c) 2015-2019. 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. */
 
-#include <cstring> // memcpy, memcmp
-#include <unistd.h>
-
 #include <sys/mman.h>
 #ifdef __FreeBSD__
 #define MAP_POPULATE MAP_PREFAULT_READ
 #endif
 
-#include "xbt/base.h"
+#include "src/internal_config.h"
 #include "xbt/log.h"
 #include "xbt/sysdep.h"
 
-#include "src/internal_config.h"
-
 #include "src/mc/sosp/PageStore.hpp"
-
 #include "src/mc/mc_mmu.hpp"
 
+#include <cstring> // memcpy, memcmp
+#include <unistd.h>
+
 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(mc_page_snapshot, mc, "Logging specific to mc_page_snapshot");
 
 namespace simgrid {