summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJack O'Connor <oconnor663@gmail.com>2016-09-15 13:32:19 -0700
committerJack O'Connor <oconnor663@gmail.com>2016-09-15 13:32:19 -0700
commit40a6cafdffc21debba6a6a459766059bf9e32a06 (patch)
tree5d28b247eca55a1f45dcd5c0c204de0595ea033f
parentb28005f658129f9130d44ad63b38a74ff2b6e69d (diff)
downloadnix-40a6cafdffc21debba6a6a459766059bf9e32a06.zip
add a CHANGELOG entry for pipe2
-rw-r--r--CHANGELOG.md4
1 files changed, 4 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 4238ed74..1d7c4619 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -5,6 +5,10 @@ This project adheres to [Semantic Versioning](http://semver.org/).
## [Unreleased]
+### Changed
+- `pipe2` now calls `libc::pipe2` where available. Previously it was emulated
+ using `pipe`, which meant that setting `O_CLOEXEC` was not atomic.
+
## [0.7.0] 2016-09-09
### Added