From 75aadeee9fc8495b2eaf3f2448591846cc917968 Mon Sep 17 00:00:00 2001 From: Simon Marlow Date: Mon, 10 May 2010 08:23:25 +0000 Subject: [PATCH] Compacting GC fix, we forgot to thread the new bq field of StgTSO. --- rts/sm/Compact.c | 1 + 1 file changed, 1 insertion(+) 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); -- 1.7.10.4