X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/1eac1757ad2fe043df17ac10262648504c226907..e2003d622b6b961020a60265f2b03b427afaeb4b:/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 7a81a9c30c..174e3430f8 100644 --- a/src/xbt/xbt_log_layout_simple.c +++ b/src/xbt/xbt_log_layout_simple.c @@ -1,6 +1,6 @@ /* layout_simple - a dumb log layout */ -/* Copyright (c) 2007-2011. The SimGrid Team. +/* Copyright (c) 2007-2014. The SimGrid Team. * All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it @@ -9,9 +9,9 @@ #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 "gras/virtu.h" +#include "simgrid/simix.h" /* SIMIX_host_self_get_name */ +#include "surf/surf.h" #include #include "portable.h" @@ -42,13 +42,18 @@ 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) ", - gras_os_myname(), procname, xbt_getpid()); + SIMIX_host_self_get_name(), procname, xbt_getpid()); check_overflow(len); } + else if (!procname) { + len = snprintf(p, rem_size, "%s::(%d) ", + SIMIX_host_self_get_name(), xbt_getpid()); + check_overflow(len); + } /* Display the date */ len = snprintf(p, rem_size, "%f] ", - gras_os_time() - simple_begin_of_time); + surf_get_clock() - simple_begin_of_time); check_overflow(len); /* Display file position if not INFO */ @@ -81,7 +86,7 @@ xbt_log_layout_t xbt_log_layout_simple_new(char *arg) res->do_layout = xbt_log_layout_simple_doit; if (simple_begin_of_time < 0) - simple_begin_of_time = gras_os_time(); + simple_begin_of_time = surf_get_clock(); return res; }