Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Sanitize static functions' names; kill unused ones
[simgrid.git] / src / surf / trace_mgr_private.h
1 /*      $Id$     */
2
3 /* Copyright (c) 2004 Arnaud Legrand. All rights reserved.                  */
4
5 /* This program is free software; you can redistribute it and/or modify it
6  * under the terms of the license (GNU LGPL) which comes with this package. */
7
8 #ifndef _SURF_TMGR_PRIVATE_H
9 #define _SURF_TMGR_PRIVATE_H
10
11 #include "xbt/swag.h"
12 #include "xbt/heap.h"
13 #include "surf/trace_mgr.h"
14
15 typedef struct tmgr_event {
16   double delta;
17   double value;
18 } s_tmgr_event_t, *tmgr_event_t;
19
20 typedef struct tmgr_trace {
21   xbt_dynar_t event_list;
22   double timestep;
23 } s_tmgr_trace_t;
24
25 typedef struct tmgr_trace_event {
26   tmgr_trace_t trace;
27   unsigned int idx;
28   void *model;
29   int free_me;
30 } s_tmgr_trace_event_t;
31
32 typedef struct tmgr_history {
33   xbt_heap_t heap;
34 } s_tmgr_history_t;
35
36 #endif /* _SURF_TMGR_PRIVATE_H */