Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
End of last commit about cleaning up windows backtraces (sorry, codding through the...
[simgrid.git] / src / xbt_modinter.h
index 1b32e6f..0060a26 100644 (file)
@@ -1,17 +1,29 @@
 /* $Id$ */
 
-/* xbt_modinter - Interface to XBT modules                                  */
+/* xbt_modinter - How to init/exit the XBT modules                          */
 
-/* Copyright (c) 2004 Martin Quinson. All rights reserved.                  */
+/* Copyright (c) 2003, 2004 Martin Quinson. All rights reserved.            */
 
 /* This program is free software; you can redistribute it and/or modify it
  * under the terms of the license (GNU LGPL) which comes with this package. */
 
 #ifndef XBT_MODINTER_H
 #define XBT_MODINTER_H
+#include "xbt/misc.h"
 
 /* Modules definitions */
-void gras_log_init(void);
+void xbt_backtrace_init(void);
+void xbt_backtrace_exit(void);
+
+void xbt_log_init(int *argc,char **argv);
 void xbt_log_exit(void);
+void xbt_fifo_exit(void);
+void xbt_dict_exit(void);
+
+void xbt_context_mod_init(void);
+void xbt_context_mod_exit(void);
 
+void xbt_os_thread_mod_init(void);
+void xbt_os_thread_mod_exit(void);   
+   
 #endif /* XBT_MODINTER_H */