summaryrefslogtreecommitdiff
path: root/libraries/base/System/Mem.hs
blob: a6e752c6232efd1b2e7b90cb9093c8f02f62ffa1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
-----------------------------------------------------------------------------
-- 
-- 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.2 2002/02/13 12:17:14 simonmar Exp $
--
-- Memory-related system things.
--
-----------------------------------------------------------------------------

module System.Mem (
 	performGC	-- :: IO ()
  ) where
 
import Prelude

#ifdef __GLASGOW_HASKELL__
foreign import {-safe-} "performGC" performGC :: IO ()
#endif