summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlan Somers <asomers@gmail.com>2016-10-02 12:31:30 -0600
committerAlan Somers <asomers@gmail.com>2016-10-02 12:31:30 -0600
commitbe9c1ff4844ae3bcdf48180b6c1600ab539ca971 (patch)
treeaad7243c17f6decfda9ab82ebe791dde4a996934
parentb5ce388e41a581ca56460900261a668b929b64e8 (diff)
downloadnix-be9c1ff4844ae3bcdf48180b6c1600ab539ca971.zip
Update CHANGELOG for PR #415
-rw-r--r--CHANGELOG.md8
1 files changed, 8 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 6d2e6bf8..4cf6b1c8 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -6,6 +6,9 @@ This project adheres to [Semantic Versioning](http://semver.org/).
## [Unreleased]
### Added
+- Added complete definitions for all kqueue-related constants on all supported
+ OSes
+ ([#415](https://github.com/nix-rust/nix/pull/415))
- Added `lseek` and `lseek64` in `::nix::unistd`
([#377](https://github.com/nix-rust/nix/pull/377))
- Added accessors `sigmask_mut` and `sigmask` to `UContext` in
@@ -19,6 +22,9 @@ This project adheres to [Semantic Versioning](http://semver.org/).
([#386](https://github.com/nix-rust/nix/pull/386))
### Changed
+- Changed `KEvent` to an opaque structure that may only be modified by its
+ constructor and the `ev_set` method.
+ ([#415](https://github.com/nix-rust/nix/pull/415))
- Replaced the reexported integer constants for signals by the enumeration
`Signal` in `::nix::sys::signal`.
([#362](https://github.com/nix-rust/nix/pull/362))
@@ -30,6 +36,8 @@ This project adheres to [Semantic Versioning](http://semver.org/).
([#362](https://github.com/nix-rust/nix/pull/362))
### Fixed
+- Fixed using kqueue with `EVFILT_USER` on FreeBSD
+ ([#415](https://github.com/nix-rust/nix/pull/415))
- Fixed the build problem for NetBSD (Note, that we currently do not support
it, so it might already be broken again).
([#389](https://github.com/nix-rust/nix/pull/389))