X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/ad437279eac6319224e1701a4782184bd5b48542..40616078da72e823931c1fb884949054699ec39d:/src/xbt_modinter.h diff --git a/src/xbt_modinter.h b/src/xbt_modinter.h index 3207123487..e0240df869 100644 --- a/src/xbt_modinter.h +++ b/src/xbt_modinter.h @@ -1,18 +1,34 @@ -/* $Id$ */ +/* xbt_modinter - How to init/exit the XBT modules */ -/* xbt_modinter - Interface to XBT modules */ - -/* Authors: Martin Quinson */ -/* Copyright (C) 2004 Martin Quinson. */ +/* Copyright (c) 2004-2017. The SimGrid Team. 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. */ + * 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" + +SG_BEGIN_DECL() /* Modules definitions */ -void gras_log_init(void); -void gras_log_exit(void); -#endif /* XBT_MODINTER_H */ +void xbt_log_preinit(void); +void xbt_log_init(int *argc, char **argv); +void xbt_log_postexit(void); + +void xbt_dict_preinit(void); +void xbt_dict_postexit(void); + +void xbt_os_thread_mod_preinit(void); +void xbt_os_thread_mod_postexit(void); + +void *mmalloc_preinit(void); +void mmalloc_postexit(void); + +extern int smx_cleaned; +extern int xbt_initialized; + +SG_END_DECL() + +#endif