Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Handle action whose latency is 0.
[simgrid.git] / src / xbt_modinter.h
1 /* $Id$ */
2
3 /* xbt_modinter - How to init/exit the XBT 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 XBT_MODINTER_H
11 #define XBT_MODINTER_H
12 #include "xbt/misc.h"
13
14 /* Modules definitions */
15 void xbt_backtrace_init(void);
16 void xbt_backtrace_exit(void);
17
18 void xbt_log_init(int *argc,char **argv);
19 void xbt_log_exit(void);
20 void xbt_fifo_exit(void);
21 void xbt_dict_exit(void);
22
23 void xbt_context_mod_init(void);
24 void xbt_context_mod_exit(void);
25
26 void xbt_os_thread_mod_init(void);
27 void xbt_os_thread_mod_exit(void);   
28    
29 #endif /* XBT_MODINTER_H */