Logo AND Algorithmique Numérique Distribuée

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