X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/eb3be59d63b0d199fa3f32b5a22553e44cfb917a..3bf534f2ae7cec0a0091f31ab88b8d05123f8b02:/src/xbt/backtrace_linux.c diff --git a/src/xbt/backtrace_linux.c b/src/xbt/backtrace_linux.c index 9704bc0560..06621d904b 100644 --- a/src/xbt/backtrace_linux.c +++ b/src/xbt/backtrace_linux.c @@ -58,6 +58,11 @@ backtrace_helper (struct _Unwind_Context *ctx, void *a) * */ int xbt_backtrace_no_malloc(void **array, int size) { + + int i = 0; + for(i=0; i < size; i++) + array[i] = NULL; + struct trace_arg arg = { .array = array, .size = size, .cnt = -1 }; if (size >= 1) @@ -191,8 +196,7 @@ void xbt_ex_setup_backtrace(xbt_ex_t * e) //FIXME: This code could be greatly im XBT_VERB("Fire a first command: '%s'", cmd); pipe = popen(cmd, "r"); if (!pipe) { - XBT_CRITICAL("Cannot fork addr2line to display the backtrace"); - abort(); + xbt_die("Cannot fork addr2line to display the backtrace"); } for (i = 0; i < e->used; i++) { @@ -301,8 +305,7 @@ void xbt_ex_setup_backtrace(xbt_ex_t * e) //FIXME: This code could be greatly im XBT_VERB("Fire a new command: '%s'", subcmd); subpipe = popen(subcmd, "r"); if (!subpipe) { - XBT_CRITICAL("Cannot fork addr2line to display the backtrace"); - abort(); + xbt_die("Cannot fork addr2line to display the backtrace"); } fgets_res = fgets(line_func, 1024, subpipe); if (fgets_res == NULL)