Skip to content
Snippets Groups Projects
Unverified Commit 2dfedd00 authored by Herbert Valerio Riedel's avatar Herbert Valerio Riedel :man_dancing:
Browse files

Follow-up to 25136b5e / #130

parent 25136b5e
No related branches found
No related tags found
No related merge requests found
......@@ -385,6 +385,11 @@ readWaitStatus wstatp = do
-- with the indicated exit @status@.
-- The operation never returns. Since it does not use the Haskell exception
-- system and it cannot be caught.
--
-- Note: Prior to @unix-2.8.0.0@ the type-signature of 'exitImmediately' was
-- @ExitCode -> IO ()@.
--
-- @since 2.8.0.0
exitImmediately :: ExitCode -> IO a
exitImmediately status = do
_ <- c_exit (exitcode2Int status)
......
# Changelog for [`unix` package](http://hackage.haskell.org/package/unix)
## 2.8.0.0
## 2.8.0.0 *UNRELEASED*
* Added terminal output flags to `System.Posix.Terminal.Common.TerminalMode`
......@@ -17,6 +17,9 @@
* Remove deprecated `execvpe(3)` legacy-emulation CPP macro
* Generalise return type of `exitImmediately` from `ExitCode -> IO ()` to
`∀a. ExitCode -> IO a` (#130)
## 2.7.2.2 *May 2017*
* Bundled with GHC 8.2.1
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment