From 64561039d3dec9e50b4eaf1b78b3edef71898383 Mon Sep 17 00:00:00 2001 From: cristianrosa Date: Thu, 10 Feb 2011 15:37:29 +0000 Subject: [PATCH] Show also the sub-scheduling rounds. git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/simgrid/simgrid/trunk@9600 48e7efb5-ca39-0410-a469-dd3cf9ba447f --- src/simix/smx_global.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/simix/smx_global.c b/src/simix/smx_global.c index f640d4b426..bcada4d2a5 100644 --- a/src/simix/smx_global.c +++ b/src/simix/smx_global.c @@ -182,9 +182,11 @@ void SIMIX_run(void) unsigned int iter; do { + DEBUG1("New Schedule Round; size(queue)=%lu", + xbt_dynar_length(simix_global->process_to_run)); do { - DEBUG1("New Schedule Round; size(queue)=%lu", - xbt_dynar_length(simix_global->process_to_run)); + DEBUG1("New Sub-Schedule Round; size(queue)=%lu", + xbt_dynar_length(simix_global->process_to_run)); SIMIX_context_runall(simix_global->process_to_run); while ((req = SIMIX_request_pop())) { DEBUG1("Handling request %p", req); -- 2.20.1