Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
ok, I stop trying to please sonar.
[simgrid.git] / src / xbt_modinter.h
1 /* xbt_modinter - How to init/exit the XBT modules                          */
2
3 /* Copyright (c) 2004-2017. The SimGrid Team. 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 XBT_MODINTER_H
9 #define XBT_MODINTER_H
10 #include "xbt/misc.h"
11
12 SG_BEGIN_DECL()
13
14 /* Modules definitions */
15
16 void xbt_log_preinit(void);
17 void xbt_log_init(int *argc, char **argv);
18 void xbt_log_postexit(void);
19
20 void xbt_dict_preinit(void);
21 void xbt_dict_postexit(void);
22
23 void xbt_os_thread_mod_preinit(void);
24 void xbt_os_thread_mod_postexit(void);
25
26 void *mmalloc_preinit(void);
27 void mmalloc_postexit(void);
28
29 extern int smx_cleaned;
30 extern int xbt_initialized;
31
32 SG_END_DECL()
33
34 #endif