[commit: packages/base] master: Fix name of minor GC function. (0da1c2a)

git at git.haskell.org git at git.haskell.org
Mon Sep 30 14:47:32 CEST 2013


Repository : ssh://git@git.haskell.org/base

On branch  : master
Link       : http://ghc.haskell.org/trac/ghc/changeset/0da1c2ad10cfef1ceeb95d6353e3d109262faa3b/base

>---------------------------------------------------------------

commit 0da1c2ad10cfef1ceeb95d6353e3d109262faa3b
Author: Austin Seipp <austin at well-typed.com>
Date:   Mon Sep 30 07:47:12 2013 -0500

    Fix name of minor GC function.
    
    I accidentally forgot to commit this.
    
    Signed-off-by: Austin Seipp <austin at well-typed.com>


>---------------------------------------------------------------

0da1c2ad10cfef1ceeb95d6353e3d109262faa3b
 System/Mem.hs |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/System/Mem.hs b/System/Mem.hs
index 2ad75ce..d46e67e 100644
--- a/System/Mem.hs
+++ b/System/Mem.hs
@@ -29,4 +29,4 @@ performGC = performMajorGC
 foreign import ccall "performMajorGC" performMajorGC :: IO ()
 
 -- | Triggers an immediate minor garbage collection.
-foreign import ccall "performMinorGC" performMinorGC :: IO ()
+foreign import ccall "performGC" performMinorGC :: IO ()




More information about the ghc-commits mailing list