Repository : ssh://darcs.haskell.org//srv/darcs/packages/base On branch : master
http://hackage.haskell.org/trac/ghc/changeset/f703e9727e4a4657e13c4b3575f2e45d0240830f >--------------------------------------------------------------- commit f703e9727e4a4657e13c4b3575f2e45d0240830f Author: Iustin Pop <[email protected]> Date: Tue Nov 6 21:52:09 2012 +0100 Fix Haddock formatting in Control.Exception This fixes Haddock formatting in the second list in the section "Interruptible operations": haddock lists items should be separated by blank lines. Signed-off-by: Iustin Pop <[email protected]> >--------------------------------------------------------------- Control/Exception.hs | 7 +++++++ 1 files changed, 7 insertions(+), 0 deletions(-) diff --git a/Control/Exception.hs b/Control/Exception.hs index fd4ea0e..4cd00bd 100644 --- a/Control/Exception.hs +++ b/Control/Exception.hs @@ -353,12 +353,19 @@ kind of situation: The following operations are guaranteed not to be interruptible: * operations on 'IORef' from "Data.IORef" + * STM transactions that do not use 'retry' + * everything from the @Foreign@ modules + * everything from @Control.Exception@ + * @tryTakeMVar@, @tryPutMVar@, @isEmptyMVar@ + * @takeMVar@ if the @MVar@ is definitely full, and conversely @putMVar@ if the @MVar@ is definitely empty + * @newEmptyMVar@, @newMVar@ + * @forkIO@, @forkIOUnmasked@, @myThreadId@ -} _______________________________________________ Cvs-libraries mailing list [email protected] http://www.haskell.org/mailman/listinfo/cvs-libraries
