Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Comment out more of SIMIX_display_process_status() to avoid
authorthiery <thiery@48e7efb5-ca39-0410-a469-dd3cf9ba447f>
Thu, 2 Dec 2010 21:51:50 +0000 (21:51 +0000)
committerthiery <thiery@48e7efb5-ca39-0410-a469-dd3cf9ba447f>
Thu, 2 Dec 2010 21:51:50 +0000 (21:51 +0000)
compilation warnings

git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/simgrid/simgrid/trunk@8934 48e7efb5-ca39-0410-a469-dd3cf9ba447f

src/simix/smx_global.c

index ddf05b6..a4d3882 100644 (file)
@@ -295,6 +295,7 @@ void SIMIX_display_process_status(void)
 
   INFO1("%d processes are still running, waiting for something.", nbprocess);
   /*  List the process and their state */
 
   INFO1("%d processes are still running, waiting for something.", nbprocess);
   /*  List the process and their state */
+  /* FIXME: reimplement me
   INFO0
     ("Legend of the following listing: \"<process> on <host>: <status>.\"");
   xbt_swag_foreach(process, simix_global->process_list) {
   INFO0
     ("Legend of the following listing: \"<process> on <host>: <status>.\"");
   xbt_swag_foreach(process, simix_global->process_list) {
@@ -310,7 +311,6 @@ void SIMIX_display_process_status(void)
       who2 = bprintf("Waiting for action %p to finish", process->waiting_action);
     }
 
       who2 = bprintf("Waiting for action %p to finish", process->waiting_action);
     }
 
-      /*
     if (process->mutex) {
       who2 =
         bprintf("%s Blocked on mutex %p", who,
     if (process->mutex) {
       who2 =
         bprintf("%s Blocked on mutex %p", who,
@@ -360,8 +360,8 @@ void SIMIX_display_process_status(void)
       free(who);
       who = who2;
     }
       free(who);
       who = who2;
     }
-    */
     INFO1("%s.", who);
     free(who);
   }
     INFO1("%s.", who);
     free(who);
   }
+  */
 }
 }