Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
mc_api::get_automaton_transition_label() defined and called in run()
[simgrid.git] / src / xbt / xbt_log_layout_simple.cpp
index 7d1c84bfd9841925de99b847be1dac19fb6e5969..8d26b51cafb62031f517edc2f777f67255c8532b 100644 (file)
 #include "simgrid/host.h"   /* sg_host_self_get_name */
 #include <cstdio>
 
-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;
@@ -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*)