From: Simon Marlow Date: Tue, 9 Sep 2008 13:22:34 +0000 (+0000) Subject: Fix compacting GC bug: don't forget to thread the blackhole_queue X-Git-Tag: 2008-09-12~44 X-Git-Url: http://git.megacz.com/?a=commitdiff_plain;h=4318aa600015f0d7b4d977cb67071f3f8e7c3b0b;p=ghc-hetmet.git Fix compacting GC bug: don't forget to thread the blackhole_queue --- diff --git a/rts/sm/Compact.c b/rts/sm/Compact.c index 9f0a69d..7f3bb29 100644 --- a/rts/sm/Compact.c +++ b/rts/sm/Compact.c @@ -996,6 +996,9 @@ compact(StgClosure *static_objects) // any threads resurrected during this GC thread((void *)&resurrected_threads); + // the blackhole queue + thread((void *)&blackhole_queue); + // the task list { Task *task;