summaryrefslogtreecommitdiff
path: root/compiler
diff options
context:
space:
mode:
authorPepe Iborra <mnislaih@gmail.com>2007-09-11 11:32:12 +0000
committerPepe Iborra <mnislaih@gmail.com>2007-09-11 11:32:12 +0000
commitdbbfdcaa31e71ec36566ce14640f297ecc699a3f (patch)
treecb663ad9be0d3a3054096bbb4a731adcb5bdc2cc /compiler
parent1a38a09d1077b507a0a4e1ebba8e1b51bd5fede9 (diff)
downloadhaskell-dbbfdcaa31e71ec36566ce14640f297ecc699a3f.tar.gz
Fix type signatures
Diffstat (limited to 'compiler')
-rw-r--r--compiler/main/InteractiveEval.hs4
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler/main/InteractiveEval.hs b/compiler/main/InteractiveEval.hs
index 6e6580e248..cdb6c9455c 100644
--- a/compiler/main/InteractiveEval.hs
+++ b/compiler/main/InteractiveEval.hs
@@ -315,7 +315,7 @@ foreign import ccall "&rts_breakpoint_io_action"
-- thread. ToDo: we might want a way to continue even if the target
-- thread doesn't die when it receives the exception... "this thread
-- is not responding".
--- sandboxIO :: MVar Status -> IO [HValue] -> IO Status
+sandboxIO :: DynFlags -> MVar Status -> IO [HValue] -> IO Status
sandboxIO dflags statusMVar thing =
withInterruptsSentTo
(forkIO (do res <- Exception.try (rethrow dflags thing)
@@ -330,7 +330,7 @@ sandboxIO dflags statusMVar thing =
-- to :continue twice, which looks strange). So if the exception is
-- not "Interrupted", we unset the exception flag before throwing.
--
--- rethrow :: IO a -> IO a
+rethrow :: DynFlags -> IO a -> IO a
rethrow dflags io = Exception.catch io $ \e -> do -- NB. not catchDyn
case e of
-- If -fbreak-on-error, we break unconditionally,