From: simonmar Date: Mon, 22 Dec 2003 10:56:42 +0000 (+0000) Subject: [project @ 2003-12-22 10:56:42 by simonmar] X-Git-Tag: nhc98-1-18-release~426 X-Git-Url: http://git.megacz.com/?a=commitdiff_plain;h=c753d4795463c63ae8471155e8a5edd00d83645d;p=ghc-base.git [project @ 2003-12-22 10:56:42 by simonmar] performGC should really do a major GC - this was broken at some point. --- diff --git a/System/Mem.hs b/System/Mem.hs index ec5b136..39a98da 100644 --- a/System/Mem.hs +++ b/System/Mem.hs @@ -24,7 +24,7 @@ import Hugs.IOExts #ifdef __GLASGOW_HASKELL__ -- | Triggers an immediate garbage collection -foreign import ccall {-safe-} "performGC" performGC :: IO () +foreign import ccall {-safe-} "performMajorGC" performGC :: IO () #endif #ifdef __NHC__