diff options
Diffstat (limited to 'docs/users_guide/8.0.2-notes.rst')
-rw-r--r-- | docs/users_guide/8.0.2-notes.rst | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/docs/users_guide/8.0.2-notes.rst b/docs/users_guide/8.0.2-notes.rst index e153ab2a86..09ba5720a5 100644 --- a/docs/users_guide/8.0.2-notes.rst +++ b/docs/users_guide/8.0.2-notes.rst @@ -67,3 +67,14 @@ TODO FIXME Heading title length :: forall {a} {t :: * -> *}. Foldable t => t a -> Int *X> :type +v length length :: forall (t :: * -> *). Foldable t => forall a. t a -> Int + +Libraries +--------- + +ghc +~~~ + +- 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. |