Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
do not trace loopback links
[simgrid.git] / src / gras_modinter.h
1 /* gras_modinter.h - How to init/exit the GRAS modules                      */
2
3 /* Copyright (c) 2004, 2005, 2006, 2007, 2009, 2010. The SimGrid Team.
4  * All rights reserved.                                                     */
5
6 /* This program is free software; you can redistribute it and/or modify it
7  * under the terms of the license (GNU LGPL) which comes with this package. */
8
9 #ifndef GRAS_MODINTER_H
10 #define GRAS_MODINTER_H
11 #include <xbt/misc.h>           /* XBT_PUBLIC */
12
13 /* modules initialization functions */
14 void gras_emul_init(void);
15 void gras_emul_exit(void);
16
17 void gras_msg_register(void);
18 void gras_msg_init(void);
19 void gras_msg_exit(void);
20 void gras_trp_register(void);
21 void gras_trp_init(void);
22 void gras_trp_exit(void);
23 void gras_datadesc_init(void);
24 void gras_datadesc_exit(void);
25
26 void gras_procdata_init(void);
27 void gras_procdata_exit(void);
28
29 #endif /* GRAS_MODINTER_H */