summaryrefslogtreecommitdiff
path: root/libraries/base/changelog.md
diff options
context:
space:
mode:
authorKamil Dworakowski <kamil@dworakowski.name>2021-09-17 17:31:49 +0200
committerMarge Bot <ben+marge-bot@smart-cactus.org>2021-12-02 21:45:10 -0500
commit99eb54bd35ae1938bf3fc0b89e527addf1a5678e (patch)
tree228a84dbc87ed944cb4c0fe2007435683848212c /libraries/base/changelog.md
parentfab2579e63bb317d4c266d7b949cf96ad6e5d17b (diff)
downloadhaskell-99eb54bd35ae1938bf3fc0b89e527addf1a5678e.tar.gz
Make openFile more tolerant of async excs (#18832)
Diffstat (limited to 'libraries/base/changelog.md')
-rw-r--r--libraries/base/changelog.md3
1 files changed, 3 insertions, 0 deletions
diff --git a/libraries/base/changelog.md b/libraries/base/changelog.md
index b6273f56de..aab8234e47 100644
--- a/libraries/base/changelog.md
+++ b/libraries/base/changelog.md
@@ -103,6 +103,9 @@
call, ensuring that the call can be interrupted with `SIGINT` on POSIX
systems.
+ * Make `openFile` more tolerant of asynchronous exceptions: more care taken
+ to release the file descriptor and the read/write lock (#18832)
+
* Add `hGetContents'`, `getContents'`, and `readFile'` in `System.IO`:
Strict IO variants of `hGetContents`, `getContents`, and `readFile`.