diff options
author | Ben Gamari <bgamari.foss@gmail.com> | 2016-08-30 17:05:43 -0400 |
---|---|---|
committer | Ben Gamari <ben@smart-cactus.org> | 2016-08-31 13:15:33 -0400 |
commit | 0e7492508cefbcabb4cf1398cfb3669edb72db77 (patch) | |
tree | 033737497023e3d39cca2792a2d1fb7290f41d6f /docs | |
parent | 28b71c55d057b780d92b351498ec611287dedbd4 (diff) | |
download | haskell-0e7492508cefbcabb4cf1398cfb3669edb72db77.tar.gz |
GHC: Expose installSignalHandlers, withCleanupSession
Test Plan: Validate
Reviewers: austin, simonmar
Reviewed By: simonmar
Subscribers: thomie
Differential Revision: https://phabricator.haskell.org/D2492
GHC Trac Issues: #12398
Diffstat (limited to 'docs')
-rw-r--r-- | docs/users_guide/8.2.1-notes.rst | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/docs/users_guide/8.2.1-notes.rst b/docs/users_guide/8.2.1-notes.rst index c50990f1b2..bb31d95cbf 100644 --- a/docs/users_guide/8.2.1-notes.rst +++ b/docs/users_guide/8.2.1-notes.rst @@ -149,7 +149,10 @@ filepath ghc ~~~ -- TODO FIXME. +- The ``GHC.initGhcMonad`` function no longer installs signal handlers by + default. This means that the RTS won't attempt to handle Ctrl-C gracefully. + If you would like to use GHC's signal handlers, call + ``GHC.installSignalHandlers`` during initialization. ghc-boot ~~~~~~~~ |