Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
proper check for the -std=gnu++11 standard, and take in on clang too
[simgrid.git] / src / mc / mc_ignore.h
index fef9bcd..05986fb 100644 (file)
@@ -3,6 +3,9 @@
 /* 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. */
 
+#ifndef SIMGRID_MC_IGNORE_H
+#define SIMGRID_MC_IGNORE_H
+
 #include <xbt/dynar.h>
 
 #include "mc/datatypes.h"
 
 SG_BEGIN_DECL();
 
-void MC_heap_region_ignore_insert(mc_heap_ignore_region_t region);
-void MC_process_ignore_memory(mc_process_t process, void *addr, size_t size);
-void MC_stack_area_add(stack_region_t stack_area);
-
-xbt_dynar_t MC_checkpoint_ignore_new(void);
+XBT_INTERNAL void MC_stack_area_add(stack_region_t stack_area);
 
+XBT_INTERNAL xbt_dynar_t MC_checkpoint_ignore_new(void);
 
 SG_END_DECL();
+
+#endif