summaryrefslogtreecommitdiff
path: root/ghc/lib/prelude/PreludeGlaST.hs
diff options
context:
space:
mode:
Diffstat (limited to 'ghc/lib/prelude/PreludeGlaST.hs')
-rw-r--r--ghc/lib/prelude/PreludeGlaST.hs94
1 files changed, 0 insertions, 94 deletions
diff --git a/ghc/lib/prelude/PreludeGlaST.hs b/ghc/lib/prelude/PreludeGlaST.hs
deleted file mode 100644
index 179b648b89..0000000000
--- a/ghc/lib/prelude/PreludeGlaST.hs
+++ /dev/null
@@ -1,94 +0,0 @@
--- solely for backward-compatibility with pre-2.00 GHC systems.
-
-module PreludeGlaST (
- Array(..), -- NB: makes internals visible
- MutableVar,
- ST,
- ByteArray,
- MutableArray,
- MutableByteArray,
- PrimIO,
- Addr(..), Word(..),
- CCallable(..), CReturnable(..),
-
- boundsOfArray,
- boundsOfByteArray,
- fixPrimIO,
- fixST,
- forkPrimIO,
- forkST,
- freezeAddrArray,
- freezeArray,
- freezeCharArray,
- freezeDoubleArray,
- freezeFloatArray,
- freezeIntArray,
- indexAddrArray,
- indexAddrOffAddr,
- indexCharArray,
- indexCharOffAddr,
- indexDoubleArray,
- indexDoubleOffAddr,
- indexFloatArray,
- indexFloatOffAddr,
- indexIntArray,
- indexIntOffAddr,
- ioToST,
- listPrimIO,
- listST,
- mapAndUnzipPrimIO,
- mapAndUnzipST,
- mapPrimIO,
- mapST,
- newAddrArray,
- newArray,
- newCharArray,
- newDoubleArray,
- newFloatArray,
- newIntArray,
- newVar,
- readAddrArray,
- readArray,
- readCharArray,
- readDoubleArray,
- readFloatArray,
- readIntArray,
- readVar,
- returnPrimIO,
- returnST,
- returnStrictlyST,
- runST,
- primIOToIO,
- ioToPrimIO,
- sameMutableArray,
- sameMutableByteArray,
- sameVar,
- seqPrimIO,
- seqST,
- seqStrictlyST,
- stToIO,
- thawArray,
- thenPrimIO,
- thenST,
- thenStrictlyST,
- unsafeFreezeArray,
- unsafeFreezeByteArray,
- unsafeInterleavePrimIO,
- unsafeInterleaveST,
- unsafePerformPrimIO,
- writeAddrArray,
- writeArray,
- writeCharArray,
- writeDoubleArray,
- writeFloatArray,
- writeIntArray,
- writeVar
-#ifndef __PARALLEL_HASKELL__
- , makeStablePtr
- , deRefStablePtr
- , freeStablePtr
- , performGC
-#endif
- ) where
-
-import GHCbase