X-Git-Url: https://bilbo.iut-bm.univ-fcomte.fr/and/gitweb/loba.git/blobdiff_plain/5efbc48dd88d5379f2903f82872d878dd31b327b..d79c6aa768cb68806408632c832e5e1330e451a6:/process.cpp?ds=sidebyside diff --git a/process.cpp b/process.cpp index f997d99..6549638 100644 --- a/process.cpp +++ b/process.cpp @@ -58,9 +58,9 @@ process::process(int argc, char* argv[]) comp_iter = lb_iter = 0; - compute_thread = new_msg_thread("compute", - std::tr1::bind(&process::compute_loop, - this)); + lb_thread = new_msg_thread("loba", + std::tr1::bind(&process::load_balance_loop, + this)); e_xbt_log_priority_t logp = xbt_log_priority_verbose; if (!LOG_ISENABLED(logp)) @@ -80,7 +80,7 @@ process::process(int argc, char* argv[]) process::~process() { - delete compute_thread; + delete lb_thread; total_load_exit += real_load; if (opt::log_rate < 0) return; @@ -99,9 +99,9 @@ int process::run() if (opt::log_rate >= 0) XBT_INFO("Initial load: %g", real_load); XBT_VERB("Starting..."); - compute_thread->start(); - load_balance_loop(); - compute_thread->wait(); + lb_thread->start(); + compute_loop(); + lb_thread->wait(); XBT_VERB("Done."); return 0; }