Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
These free's are buggy.
[simgrid.git] / src / xbt_modinter.h
1 /* xbt_modinter - How to init/exit the XBT modules                          */
2
3 /* Copyright (c) 2004, 2005, 2006, 2007, 2008, 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 XBT_MODINTER_H
10 #define XBT_MODINTER_H
11 #include "xbt/misc.h"
12
13 /* Modules definitions */
14 void xbt_backtrace_preinit(void);
15 void xbt_backtrace_postexit(void);
16
17 void xbt_log_preinit(void);
18 void xbt_log_init(int *argc, char **argv);
19 void xbt_log_postexit(void);
20
21 void xbt_fifo_preinit(void);
22 void xbt_fifo_postexit(void);
23 void xbt_dict_preinit(void);
24 void xbt_dict_postexit(void);
25
26 void xbt_os_thread_mod_preinit(void);
27 void xbt_os_thread_mod_postexit(void);
28
29 void xbt_trp_preinit(void);
30 void xbt_trp_postexit(void);
31 void xbt_datadesc_preinit(void);
32 void xbt_datadesc_postexit(void);
33
34 void *mmalloc_preinit(void);
35 void mmalloc_postexit(void);
36
37
38 #endif                          /* XBT_MODINTER_H */