X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/5ed37babb2fa9097abe82df299c0aa259ed84d5a..2c4d57aa3b8681ce74fe596862d9d766247d8f83:/src/xbt/xbt_log_layout_simple.cpp diff --git a/src/xbt/xbt_log_layout_simple.cpp b/src/xbt/xbt_log_layout_simple.cpp index a689123749..da43e17984 100644 --- a/src/xbt/xbt_log_layout_simple.cpp +++ b/src/xbt/xbt_log_layout_simple.cpp @@ -7,7 +7,8 @@ #include "src/xbt/log_private.hpp" #include "xbt/sysdep.h" -#include "xbt/virtu.h" +#include +#include #include "simgrid/engine.h" /* simgrid_get_clock */ #include "simgrid/host.h" /* sg_host_self_get_name */ @@ -34,12 +35,12 @@ static bool xbt_log_layout_simple_doit(const s_xbt_log_layout_t*, xbt_log_event_ check_overflow(1); /* Display the proc info if available */ - procname = xbt_procname(); + procname = sg_actor_self_get_name(); if (procname && strcmp(procname,"maestro")) { - len = snprintf(p, rem_size, "%s:%s:(%d) ", sg_host_self_get_name(), procname, xbt_getpid()); + len = snprintf(p, rem_size, "%s:%s:(%ld) ", sg_host_self_get_name(), procname, sg_actor_self_get_pid()); check_overflow(len); } else if (not procname) { - len = snprintf(p, rem_size, "%s::(%d) ", sg_host_self_get_name(), xbt_getpid()); + len = snprintf(p, rem_size, "%s::(%ld) ", sg_host_self_get_name(), sg_actor_self_get_pid()); check_overflow(len); }