From: Martin Quinson Date: Fri, 2 Aug 2019 18:11:41 +0000 (+0200) Subject: improve debug msg X-Git-Tag: v3.24~212 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/02f1ca13d5f2d2994a81604d6993cdc6ace0e9d9?ds=sidebyside improve debug msg --- diff --git a/src/simix/smx_global.cpp b/src/simix/smx_global.cpp index ca3e4b9edb..40b1beb727 100644 --- a/src/simix/smx_global.cpp +++ b/src/simix/smx_global.cpp @@ -338,13 +338,13 @@ static void SIMIX_wake_processes() for (auto const& model : all_existing_models) { simgrid::kernel::resource::Action* action; - XBT_DEBUG("Handling the processes whose action failed (if any)"); + XBT_DEBUG("Handling the failed actions (if any)"); while ((action = model->extract_failed_action())) { XBT_DEBUG(" Handling Action %p",action); if (action->get_activity() != nullptr) simgrid::kernel::activity::ActivityImplPtr(action->get_activity())->post(); } - XBT_DEBUG("Handling the processes whose action terminated normally (if any)"); + XBT_DEBUG("Handling the terminated actions (if any)"); while ((action = model->extract_done_action())) { XBT_DEBUG(" Handling Action %p",action); if (action->get_activity() == nullptr)