From: simonmar Date: Mon, 9 May 2005 10:18:05 +0000 (+0000) Subject: [project @ 2005-05-09 10:18:05 by simonmar] X-Git-Tag: Initial_conversion_from_CVS_complete~586 X-Git-Url: http://git.megacz.com/?a=commitdiff_plain;h=a663e6784291b5639e243724a55d9417429e5a18;p=ghc-hetmet.git [project @ 2005-05-09 10:18:05 by simonmar] printAllThreads: handle ThreadRelocated --- diff --git a/ghc/rts/Schedule.c b/ghc/rts/Schedule.c index ad27b74..7075b20 100644 --- a/ghc/rts/Schedule.c +++ b/ghc/rts/Schedule.c @@ -4160,7 +4160,7 @@ printAllThreads(void) debugBelch("all threads:\n"); # endif - for (t = all_threads; t != END_TSO_QUEUE; t = t->global_link) { + for (t = all_threads; t != END_TSO_QUEUE; ) { debugBelch("\tthread %d @ %p ", t->id, (void *)t); #if defined(DEBUG) { @@ -4168,8 +4168,14 @@ printAllThreads(void) if (label) debugBelch("[\"%s\"] ",(char *)label); } #endif - printThreadStatus(t); - debugBelch("\n"); + if (t->what_next == ThreadRelocated) { + debugBelch("has been relocated...\n"); + t = t->link; + } else { + printThreadStatus(t); + debugBelch("\n"); + t = t->global_link; + } } }