Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
change mmalloc.h into a public header
[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_init(void);
15 void xbt_backtrace_exit(void);
16
17 void xbt_log_init(int *argc, char **argv);
18 void xbt_log_exit(void);
19 void xbt_fifo_exit(void);
20 void xbt_dict_exit(void);
21
22 void xbt_os_thread_mod_init(void);
23 void xbt_os_thread_mod_exit(void);
24
25 #endif /* XBT_MODINTER_H */