X-Git-Url: https://bilbo.iut-bm.univ-fcomte.fr/and/gitweb/loba.git/blobdiff_plain/97a4b4dbf628a627e3c2d5689be89265f56074df..HEAD:/neighbor.cpp diff --git a/neighbor.cpp b/neighbor.cpp index c45fc8f..c3ea8c8 100644 --- a/neighbor.cpp +++ b/neighbor.cpp @@ -1,5 +1,5 @@ #include -#include +#include XBT_LOG_EXTERNAL_DEFAULT_CATEGORY(proc); // needed to compile neighbor.h @@ -8,9 +8,11 @@ XBT_LOG_EXTERNAL_DEFAULT_CATEGORY(proc); // needed to compile neighbor.h #include "neighbor.h" neighbor::neighbor(const char* hostname) - : host((hostdata* )MSG_host_get_data(MSG_get_host_by_name(hostname))) + : host(static_cast + (MSG_host_get_data(MSG_get_host_by_name(hostname)))) , load(std::numeric_limits::infinity()) , debt(0.0) + , credit(0.0) , to_send(0.0) { } @@ -23,8 +25,10 @@ void neighbor::print(bool verbose, e_xbt_log_priority_t logp, xbt_log_category_t cat) const { if (verbose) - XCLOG4(cat, logp, "%s: load = %g ; debt = %g ; to_send = %g", - get_name(), get_load(), get_debt(), get_to_send()); + XBT_XCLOG(cat, logp, + "%s: load = %g ; debt = %g ; credit = %g ; to_send = %g", + get_name(), get_load(), get_debt(), get_credit(), + get_to_send()); else - XCLOG2(cat, logp, "%s: load = %g", get_name(), get_load()); + XBT_XCLOG(cat, logp, "%s: load = %g", get_name(), get_load()); }