Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Convert MC config parameters to C++ API, and move their definitions to mc_config...
[simgrid.git] / src / mc / mc_page_snapshot.cpp
index 5c6f2bf..a7f21c2 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (c) 2014-2015. The SimGrid Team.
+/* Copyright (c) 2014-2018. The SimGrid Team.
  * All rights reserved.                                                     */
 
 /* This program is free software; you can redistribute it and/or modify it
 #include <unistd.h> // pread, pwrite
 
 #include "src/mc/PageStore.hpp"
-#include "src/mc/mc_mmu.h"
-#include "src/mc/mc_private.h"
-#include "src/mc/mc_snapshot.h"
+#include "src/mc/mc_mmu.hpp"
+#include "src/mc/mc_private.hpp"
+#include "src/mc/mc_snapshot.hpp"
 
 #include <xbt/mmalloc.h>
 #include "src/mc/ChunkedData.hpp"
 
 using simgrid::mc::remote;
 
-extern "C" {
-
 /** @brief Restore a snapshot of a region
  *
  *  If possible, the restoration will be incremental
@@ -51,5 +49,3 @@ void mc_region_restore_sparse(simgrid::mc::RemoteClient* process, mc_mem_region_
   mc_restore_page_snapshot_region(process,
     (void*) reg->permanent_address().address(), reg->page_data());
 }
-
-}