From: Simon Marlow Date: Mon, 10 May 2010 08:23:25 +0000 (+0000) Subject: Compacting GC fix, we forgot to thread the new bq field of StgTSO. X-Git-Url: http://git.megacz.com/?p=ghc-hetmet.git;a=commitdiff_plain;h=75aadeee9fc8495b2eaf3f2448591846cc917968 Compacting GC fix, we forgot to thread the new bq field of StgTSO. --- diff --git a/rts/sm/Compact.c b/rts/sm/Compact.c index fd6c92f..977e31d 100644 --- a/rts/sm/Compact.c +++ b/rts/sm/Compact.c @@ -476,6 +476,7 @@ thread_TSO (StgTSO *tso) thread_(&tso->block_info.closure); } thread_(&tso->blocked_exceptions); + thread_(&tso->bq); thread_(&tso->trec);