X-Git-Url: https://bilbo.iut-bm.univ-fcomte.fr/and/gitweb/loba.git/blobdiff_plain/751ae9fcfc70b0b48670338c2273e2eaebc388d2..d8bc41619b280838934e13bef30f911715259fc9:/main.cpp?ds=sidebyside diff --git a/main.cpp b/main.cpp index 8b5c3bd..0aa4327 100644 --- a/main.cpp +++ b/main.cpp @@ -38,8 +38,8 @@ namespace { xbt_cond_t proc_cond; unsigned proc_counter; - struct statistics comps; - struct statistics loads; + statistics comps; + statistics loads; } @@ -87,22 +87,22 @@ static void check_for_lost_load() double lost = total_init - total_exit; double lost_ratio = 100.0 * lost / total_init; if (lost_ratio < -opt::load_ratio_threshold) - XBT_CRITICAL("Gained load at exit! %g (%g%%) <============", - -lost, -lost_ratio); + XBT_ERROR("Gained load at exit! %g (%g%%) <============", + -lost, -lost_ratio); else if (lost_ratio > opt::load_ratio_threshold) - XBT_CRITICAL("Lost load at exit! %g (%g%%) <============", - lost, lost_ratio); + XBT_ERROR("Lost load at exit! %g (%g%%) <============", + lost, lost_ratio); else XBT_VERB("Total load at exit looks good: %g (%g%%)", lost, lost_ratio); double total_running = process::get_total_load_running(); double running_ratio = 100.0 * total_running / total_init; if (running_ratio < -opt::load_ratio_threshold) - XBT_CRITICAL("Negative running load at exit! %g (%g%%) <============", - total_running, running_ratio); + XBT_ERROR("Negative running load at exit! %g (%g%%) <============", + total_running, running_ratio); else if (running_ratio > opt::load_ratio_threshold) - XBT_CRITICAL("Remaining running load at exit! %g (%g%%) <============", - total_running, running_ratio); + XBT_ERROR("Remaining running load at exit! %g (%g%%) <============", + total_running, running_ratio); else XBT_VERB("Running load at exit looks good: %g (%g%%)", total_running, running_ratio);