Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Keep extending the DTD to handle an computation/communication interference model
[simgrid.git] / src / include / surf / trace_mgr.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_H
9 #define _SURF_TMGR_H
10
11 #include "xbt/heap.h"
12 #include "xbt/dynar.h"
13 #include "surf/maxmin.h"
14
15 typedef struct tmgr_history *tmgr_history_t;
16 typedef struct tmgr_trace *tmgr_trace_t;
17 typedef struct tmgr_trace_event *tmgr_trace_event_t;
18
19 /* Creation functions */
20 tmgr_history_t tmgr_history_new(void);
21 void tmgr_history_free(tmgr_history_t history);
22
23 tmgr_trace_t tmgr_trace_new(const char *filename);
24 void tmgr_trace_free(tmgr_trace_t trace);
25
26 tmgr_trace_event_t tmgr_history_add_trace(tmgr_history_t history,
27                                           tmgr_trace_t trace,
28                                           double start_time, int offset,
29                                           void *resource);
30
31 /* Access functions */
32 double tmgr_history_next_date(tmgr_history_t history);
33 tmgr_trace_event_t tmgr_history_get_next_event_leq(tmgr_history_t history,
34                                                    double date,
35                                                    double *value,
36                                                    void **resource);
37
38 void tmgr_finalize(void);
39
40 #endif                          /* _SURF_TMGR_H */