summaryrefslogtreecommitdiff
path: root/libraries/base/Control/Exception.hs
Commit message (Expand)AuthorAgeFilesLines
* Per-thread allocation counters and limitsSimon Marlow2014-11-121-0/+1
* Refer to 'mask' instead of 'block' in Control.ExceptionThomas Miedema2014-09-251-4/+4
* Move `Maybe`-typedef into GHC.BaseHerbert Valerio Riedel2014-09-161-1/+0
* Revert "Per-thread allocation counters and limits"Simon Marlow2014-05-041-1/+0
* Per-thread allocation counters and limitsSimon Marlow2014-05-021-0/+1
* Add Haddock `/Since: 4.4.0.0/` comments to symbolsHerbert Valerio Riedel2013-09-221-0/+2
* Constant-fold `__GLASGOW_HASKELL__` CPP conditionalsHerbert Valerio Riedel2013-09-171-10/+1
* Remove Hugs98 specific codeHerbert Valerio Riedel2013-09-171-5/+1
* throwTo is interruptible.Edward Z. Yang2013-04-161-1/+1
* Remove blocked (deprecated since 7.2)Ian Lynagh2013-02-191-4/+0
* Remove block and unblock (deprecated since GHC 7.0)Ian Lynagh2013-02-191-2/+0
* Remove nhc98-specific files and contentIan Lynagh2013-02-151-9/+0
* Make a class for asynchronous exceptions in the exception hierarchySimon Marlow2012-12-101-0/+2
* Fix Haddock formatting in Control.ExceptionIustin Pop2012-11-081-0/+7
* Add Functor instance for Handler (#7047)Simon Marlow2012-07-041-0/+3
* SafeHaskell: Added SafeHaskell to baseDavid Terei2011-06-181-0/+1
* Add allowInterrupt :: IO () (#4810)Simon Marlow2010-12-221-4/+17
* Use explicit language extensions & remove extension fields from base.cabalsimonpj@microsoft.com2011-01-281-1/+1
* extend the documentation about interruptible operationsSimon Marlow2010-12-011-1/+44
* doc fix: don't refer to unblock.Simon Marlow2010-11-081-1/+1
* Refer to 'mask' instead of 'block' in documentation of Control.ExceptionBas van Dijk2010-10-161-4/+4
* Allow nhc98 to cope with recent changes to Control.Exception.Malcolm.Wallace@me.com2010-07-101-0/+2
* New asynchronous exception control API (base parts)Simon Marlow2010-07-081-10/+17
* Address #3310Simon Marlow2009-08-301-2/+2
* Remove unused imports from basesimonpj@microsoft.com2009-07-061-1/+1
* Rewrite of the IO library, including Unicode supportSimon Marlow2009-06-121-1/+1
* add some rules of thumb for catching exceptions, restructure the docs a bitSimon Marlow2009-02-051-20/+56
* Update the Exception docsIan Lynagh2009-01-311-22/+93
* No reason for Handler and catches to exclude nhc98.Malcolm.Wallace@cs.york.ac.uk2008-08-131-9/+5
* Must import ExitCode for its instance to be re-exported.Malcolm.Wallace@cs.york.ac.uk2008-08-131-0/+7
* non-GHC: hide Prelude.catchRoss Paterson2008-08-121-0/+2
* split most of Control.Exception into new Control.Exception.BaseRoss Paterson2008-08-121-436/+13
* Control.Exception doesn't need to export assertErrorIan Lynagh2008-08-041-1/+0
* Generalise the type of mapException; pointed out by Isaac DupreeIan Lynagh2008-08-041-1/+1
* make ExitCode an instance of Exception for nhc98Malcolm.Wallace@cs.york.ac.uk2008-08-051-0/+4
* Fix nhc98 code variations to use the extensible exception API.Malcolm.Wallace@cs.york.ac.uk2008-08-041-11/+68
* Remove the duplicate definition of throwTo in Control.ExceptionIan Lynagh2008-08-031-8/+1
* Move assertError into GHC.IOBaseIan Lynagh2008-08-031-39/+0
* Generalise the type of onExceptionIan Lynagh2008-08-031-1/+1
* Remove the dangerous Exception functionsIan Lynagh2008-08-021-18/+3
* Remove unused imports in Control.ExceptionIan Lynagh2008-08-011-2/+0
* Rejig some code so Control.Exception and GHC.Conc don't need recursive importsIan Lynagh2008-08-011-47/+1
* Export assertError from Control.Exception to make GHC happyIan Lynagh2008-08-011-0/+1
* Don't use "deriving Typeable" (for portability reasons)Ian Lynagh2008-07-301-9/+13
* Add onExceptionIan Lynagh2008-07-301-0/+5
* Re-add blocked; it got lost in the extensible exceptions patchesIan Lynagh2008-07-301-0/+1
* Start to actually use extensible exceptionsIan Lynagh2008-07-301-155/+224
* Rejig the extensible exceptions so there is less circular importingIan Lynagh2008-07-301-3/+2
* Use extensible exceptions at the lowest levelIan Lynagh2008-06-211-2/+4
* Add instance Show Control.Exception.Exception for nhc98.Malcolm.Wallace@cs.york.ac.uk2008-07-281-0/+4