summaryrefslogtreecommitdiff
path: root/CHANGELOG.md
diff options
context:
space:
mode:
authorHomu <homu@barosl.com>2016-11-15 14:51:40 +0900
committerHomu <homu@barosl.com>2016-11-15 14:51:40 +0900
commit169c1e4e82a88284e2d6ea7e9df4e21def03dffa (patch)
tree52d8feed15a035c45f6bc2b8f3e759a5d66c88c7 /CHANGELOG.md
parentdcc4818e7f947bf8640a6ed55e38cb743d18ed71 (diff)
parent7e965298fd093fe04bb849ec310b06ca402c4d85 (diff)
downloadnix-169c1e4e82a88284e2d6ea7e9df4e21def03dffa.zip
Auto merge of #463 - asomers:kevent, r=fiveop
Change KEvent to treat udata as an intptr_t instead of a uintptr_t. This matches NetBSD's C definitions. Other operating systems define it as void*, despite not really being a pointer, but none actually define it as uintptr_t. Better to be right on NetBSD and wrong everywhere else than wrong everywhere. Plus, it's what mio expects. Please include this PR in nix 0.8.0
Diffstat (limited to 'CHANGELOG.md')
-rw-r--r--CHANGELOG.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index ea41e330..ffd2a092 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -30,11 +30,11 @@ This project adheres to [Semantic Versioning](http://semver.org/).
([#445](https://github.com/nix-rust/nix/pull/410))
- The minimum supported version of rustc is now 1.7.0.
([#444](https://github.com/nix-rust/nix/pull/444))
-- Implement `Send` for `KEvent`
- ([#442](https://github.com/nix-rust/nix/pull/442))
- 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))
+ ([#442](https://github.com/nix-rust/nix/pull/442))
+ ([#463](https://github.com/nix-rust/nix/pull/463))
- `pipe2` now calls `libc::pipe2` where available. Previously it was emulated
using `pipe`, which meant that setting `O_CLOEXEC` was not atomic.
([#427](https://github.com/nix-rust/nix/pull/427))