From 4318aa600015f0d7b4d977cb67071f3f8e7c3b0b Mon Sep 17 00:00:00 2001 From: Simon Marlow Date: Tue, 9 Sep 2008 13:22:34 +0000 Subject: [PATCH] Fix compacting GC bug: don't forget to thread the blackhole_queue --- rts/sm/Compact.c | 3 +++ 1 file changed, 3 insertions(+) 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; -- 1.7.10.4