Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'master' of scm.gforge.inria.fr:/gitroot/simgrid/simgrid
[simgrid.git] / include / simgrid / jedule / jedule_output.hpp
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
13 #include "jedule_events.hpp"
14 #include "jedule_platform.hpp"
15
16 #if HAVE_JEDULE
17 SG_BEGIN_DECL()
18 extern xbt_dynar_t jedule_event_list;
19
20 void jedule_init_output(void);
21 void jedule_cleanup_output(void);
22 void jedule_store_event(jed_event_t event);
23 void write_jedule_output(FILE *file, jedule_t jedule, xbt_dynar_t event_list);
24
25 SG_END_DECL()
26 #endif
27
28 #endif /* JEDULE_OUTPUT_H_ */