Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
04a134a9fc1ee3f9c5272296aba357af4bdbb919
[simgrid.git] / include / simgrid / jedule / jedule_output.h
1 /* Copyright (c) 2010-2012, 2014. 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 extern xbt_dynar_t jedule_event_list;
20
21 void jedule_init_output(void);
22
23 void jedule_cleanup_output(void);
24
25 void jedule_store_event(jed_event_t event);
26
27 void write_jedule_output(FILE *file, jedule_t jedule,
28     xbt_dynar_t event_list, xbt_dict_t meta_info_dict);
29
30 #endif
31
32 #endif /* JEDULE_OUTPUT_H_ */