[project @ 2002-04-26 13:34:05 by simonmar]
[ghc-base.git] / System / Mem.hs
1 -----------------------------------------------------------------------------
2 -- |
3 -- Module      :  System.Mem
4 -- Copyright   :  (c) The University of Glasgow 2001
5 -- License     :  BSD-style (see the file libraries/core/LICENSE)
6 -- 
7 -- Maintainer  :  libraries@haskell.org
8 -- Stability   :  provisional
9 -- Portability :  portable
10 --
11 -- Memory-related system things.
12 --
13 -----------------------------------------------------------------------------
14
15 module System.Mem (
16         performGC       -- :: IO ()
17   ) where
18  
19 import Prelude
20
21 #ifdef __GLASGOW_HASKELL__
22 foreign import ccall {-safe-} "performGC" performGC :: IO ()
23 #endif