X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/9e2e32849ed01a869c9c70e78014e6938f098be5..3f27f409dbb1f21cde182648696386708838c883:/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 65040fa8f4..74374bf325 100644 --- a/src/xbt/xbt_log_layout_simple.c +++ b/src/xbt/xbt_log_layout_simple.c @@ -9,14 +9,12 @@ #include "src/xbt/log_private.h" #include "simgrid/host.h" /* sg_host_self_get_name */ -#include "surf/surf.h" +#include "simgrid/msg.h" /* MSG_get_clock */ #include extern const char *xbt_log_priority_names[8]; extern int xbt_log_no_loc; -static double simple_begin_of_time = -1; - #define check_overflow(len) \ if ((rem_size -= (len)) > 0) { \ p += (len); \ @@ -45,7 +43,7 @@ static int xbt_log_layout_simple_doit(XBT_ATTRIB_UNUSED xbt_log_layout_t l, xbt_ } /* Display the date */ - len = snprintf(p, rem_size, "%f] ", surf_get_clock() - simple_begin_of_time); + len = snprintf(p, rem_size, "%f] ", MSG_get_clock()); check_overflow(len); /* Display file position if not INFO */ @@ -75,8 +73,5 @@ xbt_log_layout_t xbt_log_layout_simple_new(XBT_ATTRIB_UNUSED char* arg) xbt_log_layout_t res = xbt_new0(s_xbt_log_layout_t, 1); res->do_layout = &xbt_log_layout_simple_doit; - if (simple_begin_of_time < 0) - simple_begin_of_time = surf_get_clock(); - return res; }