diff options
author | Pepe Iborra <mnislaih@gmail.com> | 2007-09-11 11:32:12 +0000 |
---|---|---|
committer | Pepe Iborra <mnislaih@gmail.com> | 2007-09-11 11:32:12 +0000 |
commit | dbbfdcaa31e71ec36566ce14640f297ecc699a3f (patch) | |
tree | cb663ad9be0d3a3054096bbb4a731adcb5bdc2cc /compiler | |
parent | 1a38a09d1077b507a0a4e1ebba8e1b51bd5fede9 (diff) | |
download | haskell-dbbfdcaa31e71ec36566ce14640f297ecc699a3f.tar.gz |
Fix type signatures
Diffstat (limited to 'compiler')
-rw-r--r-- | compiler/main/InteractiveEval.hs | 4 |
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, |