From 02f1ca13d5f2d2994a81604d6993cdc6ace0e9d9 Mon Sep 17 00:00:00 2001 From: Martin Quinson Date: Fri, 2 Aug 2019 20:11:41 +0200 Subject: [PATCH] improve debug msg --- src/simix/smx_global.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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) -- 2.20.1