projects
/
ghc-base.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
add a way to ask the IO manager thread to exit
[ghc-base.git]
/
GHC
/
TopHandler.lhs-boot
1
\begin{code}
2
{-# OPTIONS -fno-implicit-prelude #-}
3
module GHC.TopHandler ( reportError, reportStackOverflow ) where
4
5
import GHC.Exception ( Exception )
6
import GHC.IOBase ( IO )
7
8
reportError :: Exception -> IO a
9
reportStackOverflow :: IO a
10
\end{code}