Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
adding the expected output of jedule
[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 <stdio.h>
11 #include "simgrid_config.h"
12 #include "jedule_events.h"
13 #include "jedule_platform.h"
14
15 #if HAVE_JEDULE
16 SG_BEGIN_DECL()
17
18 extern xbt_dynar_t jedule_event_list;
19 void jedule_init_output(void);
20 void jedule_cleanup_output(void);
21 void jedule_store_event(jed_event_t event);
22 void write_jedule_output(FILE *file, jedule_t jedule, xbt_dynar_t event_list, xbt_dict_t meta_info_dict);
23
24 SG_END_DECL()
25 #endif
26
27 #endif /* JEDULE_OUTPUT_H_ */