From: thiery Date: Thu, 2 Dec 2010 21:51:50 +0000 (+0000) Subject: Comment out more of SIMIX_display_process_status() to avoid X-Git-Tag: v3.6_beta2~983 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/c8ddc6ead10167d55dab47fd7d93fca66f0b7002 Comment out more of SIMIX_display_process_status() to avoid compilation warnings git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/simgrid/simgrid/trunk@8934 48e7efb5-ca39-0410-a469-dd3cf9ba447f --- diff --git a/src/simix/smx_global.c b/src/simix/smx_global.c index ddf05b6a25..a4d38829db 100644 --- a/src/simix/smx_global.c +++ b/src/simix/smx_global.c @@ -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 */ + /* FIXME: reimplement me INFO0 ("Legend of the following listing: \" on : .\""); 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); } - /* 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; } - */ INFO1("%s.", who); free(who); } + */ }