Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Show also the sub-scheduling rounds.
authorcristianrosa <cristianrosa@48e7efb5-ca39-0410-a469-dd3cf9ba447f>
Thu, 10 Feb 2011 15:37:29 +0000 (15:37 +0000)
committercristianrosa <cristianrosa@48e7efb5-ca39-0410-a469-dd3cf9ba447f>
Thu, 10 Feb 2011 15:37:29 +0000 (15:37 +0000)
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/simgrid/simgrid/trunk@9600 48e7efb5-ca39-0410-a469-dd3cf9ba447f

src/simix/smx_global.c

index f640d4b..bcada4d 100644 (file)
@@ -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);