From: cristianrosa Date: Thu, 5 Aug 2010 09:01:03 +0000 (+0000) Subject: Show more information on dead-lock'ed transitions X-Git-Tag: v3_5~716 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/db0795278fff21bb440a8eb3640e99d4257f249b Show more information on dead-lock'ed transitions git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/simgrid/simgrid/trunk@8105 48e7efb5-ca39-0410-a469-dd3cf9ba447f --- diff --git a/src/mc/mc_dpor.c b/src/mc/mc_dpor.c index 05677d22bf..bdc859e6e5 100644 --- a/src/mc/mc_dpor.c +++ b/src/mc/mc_dpor.c @@ -153,7 +153,8 @@ void MC_dpor(void) INFO0("**************************"); INFO0("Locked transitions:"); xbt_setset_foreach(mc_current_state->transitions, cursor, trans){ - INFO1("%s", trans->name); + INFO3("%s [src=%p, dst=%p]", trans->name, trans->wait.comm->src_proc, + trans->wait.comm->dst_proc); } INFO0("Counter-example execution trace:");