diff options
author | Simon Marlow <marlowsd@gmail.com> | 2009-01-12 12:10:42 +0000 |
---|---|---|
committer | Simon Marlow <marlowsd@gmail.com> | 2009-01-12 12:10:42 +0000 |
commit | 1aaac3473d8fce705610e4a6437283f7401a5583 (patch) | |
tree | 9dcde3a95977b7b39eae41620a46a257e594de3c /rts/sm/GC.c | |
parent | 6a405b1efd138a4af4ed93ce4ff173a4c5704512 (diff) | |
download | haskell-1aaac3473d8fce705610e4a6437283f7401a5583.tar.gz |
sanity checking fixes
Diffstat (limited to 'rts/sm/GC.c')
-rw-r--r-- | rts/sm/GC.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rts/sm/GC.c b/rts/sm/GC.c index 2af5fa133b..e44a310f45 100644 --- a/rts/sm/GC.c +++ b/rts/sm/GC.c @@ -266,7 +266,7 @@ GarbageCollect (rtsBool force_major_gc, // check stack sanity *before* GC IF_DEBUG(sanity, checkFreeListSanity()); - IF_DEBUG(sanity, checkMutableLists()); + IF_DEBUG(sanity, checkMutableLists(rtsTrue)); // Initialise all our gc_thread structures for (t = 0; t < n_gc_threads; t++) { |