Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
model-checker : restore struct smx_ctx_sysv in smx_context_sysv.c
[simgrid.git] / src / include / mc / datatypes.h
index 0b64046..a31625a 100644 (file)
 SG_BEGIN_DECL()
 
 /******************************* Transitions **********************************/
+
 typedef struct s_mc_transition *mc_transition_t;
 
+
+/*********** Structures for snapshot comparison **************************/
+
+typedef struct s_mc_ignore_region{
+  int block;
+  int fragment;
+  void *address;
+  size_t size;
+}s_mc_ignore_region_t, *mc_ignore_region_t;
+
+typedef struct s_stack_region{
+  void *address;
+  char *process_name;
+  void *context;
+  size_t size;
+}s_stack_region_t, *stack_region_t;
+
+typedef struct s_heap_equality{
+  void *address1;
+  void *address2;
+}s_heap_equality_t, *heap_equality_t;
+
 SG_END_DECL()
 #endif                          /* _MC_MC_H */