]> AND Public Git Repository - simgrid.git/blobdiff - src/mc/mc_mmu.h
Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
[mc] Support for reading heap state from another process
[simgrid.git] / src / mc / mc_mmu.h
index f188da7446079474e262fef16d16c43436c18102..6740829b8c47d046a9f4102364d3fdd2af67765f 100644 (file)
 #include <stdint.h>
 #include <stdbool.h>
 
+#include <simgrid_config.h>
+
+SG_BEGIN_DECL()
+
 extern int xbt_pagesize;
 extern int xbt_pagebits;
 
@@ -68,4 +72,6 @@ bool mc_same_page(void* a, void* b)
   return ((uintptr_t) a >> xbt_pagebits) == ((uintptr_t) b >> xbt_pagebits);
 }
 
+SG_END_DECL()
+
 #endif