X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/6511b78ff810ead55a110d42b01a08255a55b56d..589ed30a21a139bc5735627ed82e23df0318230d:/src/xbt/module.c diff --git a/src/xbt/module.c b/src/xbt/module.c index 65638c8629..5b824e8af4 100644 --- a/src/xbt/module.c +++ b/src/xbt/module.c @@ -8,67 +8,98 @@ /* 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. */ -#include "gras_private.h" +#include "xbt/sysdep.h" +#include "xbt/log.h" +#include "xbt/error.h" +#include "xbt/dynar.h" +#include "xbt/config.h" -GRAS_LOG_NEW_DEFAULT_SUBCATEGORY(module,GRAS); +#include "gras/process.h" /* FIXME: bad loop */ -extern void gras_log_exit(void); +#include "xbt/module.h" /* this module */ -struct gras_module_ { - gras_dynar_t *deps; - gras_cfg_t *cfg; +#include "xbt_modinter.h" /* prototype of other module's init/exit in XBT */ +#include "gras_modinter.h" /* same in GRAS */ + +XBT_LOG_NEW_DEFAULT_SUBCATEGORY(module,xbt, "module handling"); + +static int xbt_running_process = 0; + +struct xbt_module_ { + xbt_dynar_t *deps; + xbt_cfg_t *cfg; int ref; - gras_module_new_fct_t new; - gras_module_finalize_fct_t finalize; + xbt_module_new_fct_t new; + xbt_module_finalize_fct_t finalize; }; void -gras_init(int argc, char **argv) { - gras_init_defaultlog(argc, argv, NULL); +xbt_init(int *argc, char **argv) { + static short int first_run = 1; + if(first_run) + xbt_init_defaultlog(argc, argv, NULL); + first_run = 0; } /** - * gras_init_defaultlog: + * xbt_init_defaultlog: * @argc: * @argv: * * Initialize the gras mecanisms. */ void -gras_init_defaultlog(int argc,char **argv, const char *defaultlog) { - int i; +xbt_init_defaultlog(int *argc,char **argv, const char *defaultlog) { + int i,j; char *opt; - gras_error_t errcode; int found=0; INFO0("Initialize GRAS"); /** Set logs and init log submodule */ - for (i=1; i