Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge pull request #59 from fabienchaix/master
[simgrid.git] / include / simgrid / jedule / jedule_output.h
1 /* Copyright (c) 2010-2012, 2014-2015. The SimGrid Team.
2  * All rights reserved.                                                     */
3
4 /* This program is free software; you can redistribute it and/or modify it
5  * under the terms of the license (GNU LGPL) which comes with this package. */
6
7 #ifndef JEDULE_OUTPUT_H_
8 #define JEDULE_OUTPUT_H_
9
10 #include "simgrid_config.h"
11
12 #include <stdio.h>
13
14 #include "jedule_events.h"
15 #include "jedule_platform.h"
16
17 #ifdef HAVE_JEDULE
18
19 SG_BEGIN_DECL()
20
21 extern xbt_dynar_t jedule_event_list;
22
23 void jedule_init_output(void);
24
25 void jedule_cleanup_output(void);
26
27 void jedule_store_event(jed_event_t event);
28
29 void write_jedule_output(FILE *file, jedule_t jedule,
30     xbt_dynar_t event_list, xbt_dict_t meta_info_dict);
31
32 SG_END_DECL()
33
34 #endif
35
36 #endif /* JEDULE_OUTPUT_H_ */