diff options
author | Marcin Szamotulski <profunctor@pm.me> | 2021-01-12 17:28:36 -0500 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2021-02-13 21:28:13 -0500 |
commit | 448fd22d84a6d8100448861633f7918584bf97e8 (patch) | |
tree | bb8cd93369000b4d2fe2f3f51a874ecb297f0eaf /libraries | |
parent | 4b068fc3f62550de80b6f832fa05ff31914b1232 (diff) | |
download | haskell-448fd22d84a6d8100448861633f7918584bf97e8.tar.gz |
Apply 1 suggestion(s) to 1 file(s)
Diffstat (limited to 'libraries')
-rw-r--r-- | libraries/base/Control/Exception/Base.hs | 22 |
1 files changed, 15 insertions, 7 deletions
diff --git a/libraries/base/Control/Exception/Base.hs b/libraries/base/Control/Exception/Base.hs index a390418458..0b8d822b58 100644 --- a/libraries/base/Control/Exception/Base.hs +++ b/libraries/base/Control/Exception/Base.hs @@ -214,13 +214,21 @@ onException io what = io `catch` \e -> do _ <- what -- -- > withFile name mode = bracket (openFile name mode) hClose -- --- Implementation of bracket is using 'mask', which means that the release --- handler should be uninterruptible to run to completion in presence of --- asynchronous exceptions. 'hClose' is uninterruptible if used --- non-concurrently, closing a socket (from \"network\" package) is --- uninterruptible as well, an example of interruptible close handler is --- 'killThread' which should be wrapped using 'uninterruptibleMask_' when used --- with 'bracket'. Comments in 'uninterruptibleMask' still aply. +-- Bracket wraps the release action with 'mask', which is sufficient to ensure +-- that the release action executes to completion when it does not invoke any +-- interruptible actions, even in the presence of asynchronous exceptions. For +-- example, `hClose` is uninterruptible when it is not racing other uses of the +-- handle. Similarly, closing a socket (from \"network\" package) is also +-- uninterruptible under similar conditions. An example of an interruptible +-- action is 'killThread'. Completion of interruptible release actions can be +-- ensured by wrapping them in in 'uninterruptibleMask_', but this risks making +-- the program non-responsive to @Control-C@, or timeouts. Another option is to +-- run the release action asynchronously in its own thread: +-- +-- > void $ uninterruptibleMask_ $ forkIO $ do { ... } +-- +-- The resource will be released as soon as possible, but the thread that invoked +-- bracket will not block in an uninterruptible state. -- bracket :: IO a -- ^ computation to run first (\"acquire resource\") |