summaryrefslogtreecommitdiff
path: root/CHANGELOG.md
diff options
context:
space:
mode:
authorRoss Light <ross@zombiezen.com>2020-04-07 18:32:55 -0700
committerRoss Light <ross@zombiezen.com>2020-04-07 18:32:55 -0700
commit1b5ea70a6cea1df3efc91b6a7fb6acf20fc7f99f (patch)
tree8056702029513372b89b9037d2e47a1df026fe35 /CHANGELOG.md
parent5c8cdd005270557ceb91cdafc1eca7c971ee9219 (diff)
downloadnix-1b5ea70a6cea1df3efc91b6a7fb6acf20fc7f99f.zip
Add select::FdSet::fds() method
Diffstat (limited to 'CHANGELOG.md')
-rw-r--r--CHANGELOG.md3
1 files changed, 3 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 1f76bfaa..964b749b 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -15,11 +15,14 @@ This project adheres to [Semantic Versioning](http://semver.org/).
identity for filesystem checks per-thread.
(#[1163](https://github.com/nix-rust/nix/pull/1163))
- Derived `Ord`, `PartialOrd` for `unistd::Pid` (#[1189](https://github.com/nix-rust/nix/pull/1189))
+- Added `select::FdSet::fds` method to iterate over file descriptors in a set.
### Changed
- Changed `fallocate` return type from `c_int` to `()` (#[1201](https://github.com/nix-rust/nix/pull/1201))
- Enabled `sys::ptrace::setregs` and `sys::ptrace::getregs` on x86_64-unknown-linux-musl target
(#[1198](https://github.com/nix-rust/nix/pull/1198))
+- `select::FdSet::contains` and `select::FdSet::highest` now operate on `&FdSet`
+ instead of `&mut FdSet`.
### Fixed