[project @ 2002-02-13 12:17:14 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.2 2002/02/13 12:17:14 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 {-safe-} "performGC" performGC :: IO ()
25 #endif