X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/187ba0c05f9fbe51175179b9f637b6554f947468..d14b1c82259fb8bc3ec16ceeda293fbc5f5b56ed:/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 c6acdc94b7..be6b390676 100644 --- a/src/xbt/xbt_log_layout_simple.c +++ b/src/xbt/xbt_log_layout_simple.c @@ -9,8 +9,8 @@ #include "xbt/sysdep.h" #include "xbt/strbuff.h" /* For dynamic version when the static one fails */ #include "xbt/log_private.h" -#include "xbt/synchro.h" /* xbt_thread_name */ +#include "simgrid/simix.h" /* SIMIX_host_self_get_name */ #include "surf/surf.h" #include #include "portable.h" @@ -42,12 +42,12 @@ static int xbt_log_layout_simple_doit(xbt_log_layout_t l, procname = xbt_procname(); if (procname && *procname) { len = snprintf(p, rem_size, "%s:%s:(%d) ", - xbt_os_procname(), procname, xbt_getpid()); + SIMIX_host_self_get_name(), procname, xbt_getpid()); check_overflow(len); } else if (!procname) { len = snprintf(p, rem_size, "%s::(%d) ", - xbt_os_procname(), xbt_getpid()); + SIMIX_host_self_get_name(), xbt_getpid()); check_overflow(len); }