[project @ 2002-04-24 16:31:37 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 -- $Id: Mem.hs,v 1.4 2002/04/24 16:31:45 simonmar Exp $
12 --
13 -- Memory-related system things.
14 --
15 -----------------------------------------------------------------------------
16
17 module System.Mem (
18         performGC       -- :: IO ()
19   ) where
20  
21 import Prelude
22
23 #ifdef __GLASGOW_HASKELL__
24 foreign import ccall {-safe-} "performGC" performGC :: IO ()
25 #endif