diff options
author | Simon Marlow <marlowsd@gmail.com> | 2009-07-24 14:59:56 +0000 |
---|---|---|
committer | Simon Marlow <marlowsd@gmail.com> | 2009-07-24 14:59:56 +0000 |
commit | 0c6929858665ae0e9918fe0c6c71ce26fd4a4461 (patch) | |
tree | 82072950bfa9a009410906880524ef3f69f4fe4f /rts/sm/Storage.c | |
parent | 2da67673279cf015ccc84270f6fd7935f64261a6 (diff) | |
download | haskell-0c6929858665ae0e9918fe0c6c71ce26fd4a4461.tar.gz |
free the gc_thread structures during shutdown
Diffstat (limited to 'rts/sm/Storage.c')
-rw-r--r-- | rts/sm/Storage.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/rts/sm/Storage.c b/rts/sm/Storage.c index 9320232e97..d14e58856f 100644 --- a/rts/sm/Storage.c +++ b/rts/sm/Storage.c @@ -284,6 +284,7 @@ freeStorage (void) closeMutex(&sm_mutex); #endif stgFree(nurseries); + freeGcThreads(); } /* ----------------------------------------------------------------------------- |