X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/84402e8e2ee2a2d0bef25fdceb0a263ed8b471f6..0d3fb525534744cb1a0f7e0b664dbb3c2791e9cc:/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 5cc0a6531e..8d26b51caf 100644 --- a/src/xbt/xbt_log_layout_simple.cpp +++ b/src/xbt/xbt_log_layout_simple.cpp @@ -8,22 +8,21 @@ #include "xbt/sysdep.h" #include "src/xbt/log_private.hpp" -#include "simgrid/host.h" /* sg_host_self_get_name */ -#include "simgrid/msg.h" /* MSG_get_clock */ +#include "simgrid/engine.h" /* simgrid_get_clock */ +#include "simgrid/host.h" /* sg_host_self_get_name */ #include -extern const char *xbt_log_priority_names[8]; extern int xbt_log_no_loc; #define check_overflow(len) \ do { \ rem_size -= (len); \ if (rem_size <= 0) \ - return 0; \ + return false; \ p += (len); \ } while (0) -static int xbt_log_layout_simple_doit(const s_xbt_log_layout_t*, xbt_log_event_t ev, const char* fmt) +static bool xbt_log_layout_simple_doit(const s_xbt_log_layout_t*, xbt_log_event_t ev, const char* fmt) { char *p = ev->buffer; int rem_size = ev->buffer_size; @@ -45,7 +44,7 @@ static int xbt_log_layout_simple_doit(const s_xbt_log_layout_t*, xbt_log_event_t } /* Display the date */ - len = snprintf(p, rem_size, "%f] ", MSG_get_clock()); + len = snprintf(p, rem_size, "%f] ", simgrid_get_clock()); check_overflow(len); /* Display file position if not INFO */ @@ -67,7 +66,7 @@ static int xbt_log_layout_simple_doit(const s_xbt_log_layout_t*, xbt_log_event_t check_overflow(1); *p = '\0'; - return 1; + return true; } xbt_log_layout_t xbt_log_layout_simple_new(const char*)