X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/ff6508f17d5e1bda1a68d5431ceff8157b7a22df..10b7c79ad6ce754d044df091411b76b177b61ac2:/src/xbt/xbt_log_layout_simple.c diff --git a/src/xbt/xbt_log_layout_simple.c b/src/xbt/xbt_log_layout_simple.c index 5933bf9ab0..adc5da593b 100644 --- a/src/xbt/xbt_log_layout_simple.c +++ b/src/xbt/xbt_log_layout_simple.c @@ -9,6 +9,7 @@ #include "xbt/sysdep.h" #include "xbt/log.h" +#include "xbt/synchro.h" /* xbt_thread_name */ #include "gras/virtu.h" #include @@ -35,8 +36,8 @@ static char *xbt_log_layout_simple_doit(xbt_log_layout_t l, p += sprintf(res,"[");; /* Display the proc info if available */ if(strlen(xbt_procname())) - p += sprintf(p,"%s:%s:(%d) ", - gras_os_myname(), xbt_procname(),(*xbt_getpid)()); + p += sprintf(p,"%s:%s:(%d):%s ", + gras_os_myname(), xbt_procname(),(*xbt_getpid)(),xbt_thread_self_name()); /* Display the date */ p += sprintf(p,"%f] ", gras_os_time()-begin_of_time);