From: cristianrosa Date: Thu, 10 Feb 2011 15:37:29 +0000 (+0000) Subject: Show also the sub-scheduling rounds. X-Git-Tag: v3.6_beta2~330 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/64561039d3dec9e50b4eaf1b78b3edef71898383 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 --- 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);