diff options
author | Simon Marlow <marlowsd@gmail.com> | 2010-05-10 08:23:25 +0000 |
---|---|---|
committer | Simon Marlow <marlowsd@gmail.com> | 2010-05-10 08:23:25 +0000 |
commit | 75aadeee9fc8495b2eaf3f2448591846cc917968 (patch) | |
tree | 60ec6898555114f54d3a527ffa308f84098d2f35 /rts/sm | |
parent | ee9ecae821665a7d9f2c8629264614a8d42c1b5d (diff) | |
download | haskell-75aadeee9fc8495b2eaf3f2448591846cc917968.tar.gz |
Compacting GC fix, we forgot to thread the new bq field of StgTSO.
Diffstat (limited to 'rts/sm')
-rw-r--r-- | rts/sm/Compact.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/rts/sm/Compact.c b/rts/sm/Compact.c index fd6c92fdd1..977e31d811 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); |