Logo AND Algorithmique Numérique Distribuée

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