Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
[mc] Do not call malloc_no_memset in mc_snapshot
[simgrid.git] / src / include / mc / datatypes.h
index cd8caab..728bb0e 100644 (file)
@@ -7,8 +7,6 @@
 #ifndef MC_DATATYPE_H
 #define MC_DATATYPE_H
 
-#define UNW_LOCAL_ONLY
-
 #include "xbt/misc.h"
 #include "xbt/swag.h"
 #include "xbt/fifo.h"
@@ -22,7 +20,6 @@ SG_BEGIN_DECL()
 
 typedef struct s_mc_transition *mc_transition_t;
 
-
 /*********** Structures for snapshot comparison **************************/
 
 typedef struct s_mc_heap_ignore_region{
@@ -38,22 +35,14 @@ typedef struct s_stack_region{
   void *context;
   size_t size;
   int block;
+  int process_index;
 }s_stack_region_t, *stack_region_t;
 
 void heap_ignore_region_free(mc_heap_ignore_region_t r);
 void heap_ignore_region_free_voidp(void *r);
 
-/************ Object info *************/
-
-typedef struct s_mc_object_info s_mc_object_info_t, *mc_object_info_t;
 
 /************ DWARF structures *************/
 
-typedef int e_dw_type_type;
-
-typedef struct s_dw_type s_dw_type_t, *dw_type_t;
-
-char* get_type_description(mc_object_info_t info, char *type_name);
-
 SG_END_DECL()
 #endif                          /* _MC_MC_H */