From: Christophe ThiƩry Date: Fri, 29 Jul 2011 09:32:02 +0000 (+0200) Subject: Merge branch 'master' of git+ssh://scm.gforge.inria.fr//gitroot//simgrid/simgrid X-Git-Tag: v3_6_2~188^2~7 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/5b811fdb6d7fae96fa9fe45612dee560a64f2af6?hp=74ca70cee0de024f4556293af859889cf4fb384e Merge branch 'master' of git+ssh://scm.gforge.inria.fr//gitroot//simgrid/simgrid --- diff --git a/src/simix/smx_global.c b/src/simix/smx_global.c index 786790263e..2cb2b39f0a 100644 --- a/src/simix/smx_global.c +++ b/src/simix/smx_global.c @@ -325,8 +325,6 @@ void SIMIX_display_process_status(void) XBT_INFO("%d processes are still running, waiting for something.", nbprocess); /* List the process and their state */ - XBT_INFO - ("Legend of the following listing: \" on : .\""); xbt_swag_foreach(process, simix_global->process_list) { if (process->waiting_action) { @@ -358,7 +356,8 @@ void SIMIX_display_process_status(void) action_description = "I/O"; break; } - XBT_INFO("Waiting for %s action %p to finish", action_description, process->waiting_action); + XBT_INFO("Process %ld (%s@%s): waiting for %s action %p to finish", process->pid, process->name, process->smx_host->name, + action_description, process->waiting_action); } } }