X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/3719170cd3de26a8fc027b9a6bb539a195b9e08c..48eda6a2033423e980783b6e40bc35824808bb9a:/src/xbt/backtrace_linux.c diff --git a/src/xbt/backtrace_linux.c b/src/xbt/backtrace_linux.c index 04a26c714f..d7e6d49292 100644 --- a/src/xbt/backtrace_linux.c +++ b/src/xbt/backtrace_linux.c @@ -80,7 +80,8 @@ void xbt_backtrace_current(xbt_ex_t * e) e->used = backtrace((void **) e->bt, XBT_BACKTRACE_SIZE); if (e->used == 0) { fprintf(stderr, "The backtrace() function failed, which probably means that the memory is exhausted. Here is a crude dump of the exception that I was trying to build:"); - fprintf(stderr, "%s:%s(%d) [%s:%d] %s", e->host,e->procname,e->pid, e->file,e->line,e->msg); + fprintf(stderr, "%s(%d) [%s:%d] %s", + e->procname, e->pid, e->file, e->line, e->msg); fprintf(stderr, "Bailing out now since there is nothing I can do without a decent amount of memory. Please go fix the memleaks\n"); exit(1); }