X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/5736ddf26ccce2afd1eb27b5ee74ff869673cac4..13206972c2b37e1891db900c963e596671da5870:/src/xbt/module.c diff --git a/src/xbt/module.c b/src/xbt/module.c index a79815f017..69b1db4c5e 100644 --- a/src/xbt/module.c +++ b/src/xbt/module.c @@ -9,7 +9,6 @@ #include "xbt/sysdep.h" #include "xbt/log.h" -#include "xbt/error.h" #include "xbt/dynar.h" #include "xbt/config.h" @@ -19,6 +18,8 @@ XBT_LOG_NEW_DEFAULT_SUBCATEGORY(module,xbt, "module handling"); +char *xbt_binary_name=NULL; /* Mandatory to retrieve neat backtraces */ + struct xbt_module_ { xbt_dynar_t *deps; xbt_cfg_t *cfg; @@ -33,7 +34,8 @@ xbt_init(int *argc, char **argv) { static short int first_run = 1; if (!first_run) return; - + + xbt_binary_name = strdup(argv[0]); first_run = 0; VERB0("Initialize XBT");