Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Starting the network module.
[simgrid.git] / src / surf / trace_mgr_private.h
1 /* Authors: Arnaud Legrand                                                  */
2
3 /* This program is free software; you can redistribute it and/or modify it
4    under the terms of the license (GNU LGPL) which comes with this package. */
5
6 #ifndef _SURF_TMGR_PRIVATE_H
7 #define _SURF_TMGR_PRIVATE_H
8
9 #include "xbt/swag.h"
10 #include "xbt/heap.h"
11 #include "surf/trace_mgr.h"
12
13 typedef struct tmgr_event {
14   xbt_heap_float_t delta;
15   xbt_maxmin_float_t value;
16 } s_tmgr_event_t, *tmgr_event_t;
17
18 typedef struct tmgr_trace {
19   xbt_dynar_t event_list;
20 } s_tmgr_trace_t;
21
22 typedef struct tmgr_trace_event {
23   tmgr_trace_t trace;
24   int idx;
25   void *resource;
26 } s_tmgr_trace_event_t;
27
28 typedef struct tmgr_history {
29   xbt_heap_t heap;
30 } s_tmgr_history_t;
31
32 #endif                          /* _SURF_TMGR_PRIVATE_H */