[project @ 2002-02-12 10:50:03 by simonmar]
authorsimonmar <unknown>
Tue, 12 Feb 2002 10:50:03 +0000 (10:50 +0000)
committersimonmar <unknown>
Tue, 12 Feb 2002 10:50:03 +0000 (10:50 +0000)
The new home for performGC.

System/Mem.hs [new file with mode: 0644]

diff --git a/System/Mem.hs b/System/Mem.hs
new file mode 100644 (file)
index 0000000..a50d6ff
--- /dev/null
@@ -0,0 +1,23 @@
+-----------------------------------------------------------------------------
+-- 
+-- Module      :  System.Mem
+-- Copyright   :  (c) The University of Glasgow 2001
+-- License     :  BSD-style (see the file libraries/core/LICENSE)
+-- 
+-- Maintainer  :  libraries@haskell.org
+-- Stability   :  provisional
+-- Portability :  portable
+--
+-- $Id: Mem.hs,v 1.1 2002/02/12 10:50:03 simonmar Exp $
+--
+-- Memory-related system things.
+--
+-----------------------------------------------------------------------------
+
+module System.Mem (
+       performGC       -- :: IO ()
+  ) where
+#ifdef __GLASGOW_HASKELL__
+foreign import {-safe-} "performGC" performGC :: IO ()
+#endif