summaryrefslogtreecommitdiff
path: root/CHANGELOG.md
diff options
context:
space:
mode:
authorStefano Garzarella <sgarzare@redhat.com>2022-06-08 09:52:53 +0200
committerStefano Garzarella <sgarzare@redhat.com>2022-06-09 09:09:23 +0200
commitc3081e4896344dbf0c27103a60c90eaa8d35715e (patch)
tree2487a8ea9384924ec651ee39b46980eb97613abf /CHANGELOG.md
parent5dedbc7850448ae3922ab0a833f3eb971bf7e25f (diff)
downloadnix-c3081e4896344dbf0c27103a60c90eaa8d35715e.zip
ppoll: make sigmask parameter optional
ppoll(2) supports 'sigmask' as NULL. In that case no signal mask manipulation is performed. Let's make `sigmask` parameter of `nix::poll::ppoll` optional to allow that behaviour. Signed-off-by: Stefano Garzarella <sgarzare@redhat.com>
Diffstat (limited to 'CHANGELOG.md')
-rw-r--r--CHANGELOG.md2
1 files changed, 2 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 9f40e408..e338d9aa 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -28,6 +28,8 @@ This project adheres to [Semantic Versioning](https://semver.org/).
* Changes the type of the `priority` arguments to `i32`.
* Changes the return type of `aio_return` to `usize`.
(#[1713](https://github.com/nix-rust/nix/pull/1713))
+- `nix::poll::ppoll`: `sigmask` parameter is now optional.
+ (#[1739](https://github.com/nix-rust/nix/pull/1739))
### Fixed