Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
[mc] Remove useless bits
authorGabriel Corona <gabriel.corona@loria.fr>
Wed, 13 Apr 2016 13:35:23 +0000 (15:35 +0200)
committerGabriel Corona <gabriel.corona@loria.fr>
Wed, 13 Apr 2016 14:32:34 +0000 (16:32 +0200)
src/include/mc/datatypes.h
src/mc/mc_checkpoint.cpp
src/mc/mc_memory.cpp
src/mc/mc_private.h

index 403a264..ff7fa02 100644 (file)
@@ -16,8 +16,6 @@
 
 SG_BEGIN_DECL()
 
-typedef struct s_mc_transition *mc_transition_t;
-
 typedef struct s_stack_region{
   void *address;
 #if HAVE_UCONTEXT_H
index 3658048..36ed863 100644 (file)
 #include <link.h>
 #include <dirent.h>
 
+#ifndef WIN32
+#include <sys/mman.h>
+#endif
+
 #include "src/internal_config.h"
 #include "src/mc/mc_private.h"
 #include "xbt/module.h"
index 1db534b..866015f 100644 (file)
@@ -11,6 +11,7 @@
 
 #include "mc/mc.h"
 #include "src/mc/mc_private.h"
+#include "src/xbt/mmalloc/mmprivate.h"
 
 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(mc_memory, mc,
                                 "Logging specific to MC (memory)");
@@ -26,7 +27,6 @@ void MC_memory_init()
 }
 
 /* Finalize the memory subsystem */
-#include "src/xbt_modinter.h"
 void MC_memory_exit(void)
 {
 }
index f5a789b..0ef9cfb 100644 (file)
 #include <sys/types.h>
 
 #include <stdio.h>
-#ifndef WIN32
-#include <sys/mman.h>
-#endif
-
-#include <elfutils/libdw.h>
 
 #include <simgrid/msg.h>
 #include <xbt/config.h>
 #include "src/mc/mc_base.h"
 
 #include "src/simix/smx_private.h"
-#include "src/xbt/mmalloc/mmprivate.h"
 
 #ifdef __cplusplus
 #include "src/mc/mc_forward.hpp"
 #include "src/xbt/memory_map.hpp"
 #endif
 
-#include "src/mc/mc_protocol.h"
-
 #ifdef __cplusplus
 namespace simgrid {
 namespace mc {