Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
fix: correct trace mask checking
[simgrid.git] / src / surf / trace_mgr_private.h
index 5bd6c32..0083cb9 100644 (file)
@@ -13,8 +13,8 @@
 #include "surf/trace_mgr.h"
 
 typedef struct tmgr_event {
-  xbt_heap_float_t delta;
-  xbt_maxmin_float_t value;
+  double delta;
+  double value;
 } s_tmgr_event_t, *tmgr_event_t;
 
 typedef struct tmgr_trace {
@@ -23,12 +23,13 @@ typedef struct tmgr_trace {
 
 typedef struct tmgr_trace_event {
   tmgr_trace_t trace;
-  int idx;
-  void *resource;
+  unsigned int idx;
+  void *model;
+  int free_me;
 } s_tmgr_trace_event_t;
 
 typedef struct tmgr_history {
   xbt_heap_t heap;
 } s_tmgr_history_t;
 
-#endif                         /* _SURF_TMGR_PRIVATE_H */
+#endif /* _SURF_TMGR_PRIVATE_H */