Skip to content

Commit d080785

Browse files
committed
Respond to review comments
1 parent f698fd3 commit d080785

File tree

2 files changed

+10
-6
lines changed

2 files changed

+10
-6
lines changed

CHANGELOG.md

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -69,10 +69,14 @@ This project adheres to [Semantic Versioning](http://semver.org/).
6969
optional arguments.
7070
(#[1242](https://github.com/nix-rust/nix/pull/1242))
7171

72-
- Removed `unistd::daemon`, `unistd::pipe2`,
73-
`sys::event::FilterFlag::NOTE_EXIT_REPARENTED`, and
74-
`sys::event::FilterFlag::NOTE_REAP` on OSX and ios. Removed
75-
`sys::ptrace::ptrace` on Android and Linux.
72+
- Removed `unistd::daemon` and `unistd::pipe2` on OSX and ios
73+
(#[1255](https://github.com/nix-rust/nix/pull/1255))
74+
75+
- Removed `sys::event::FilterFlag::NOTE_EXIT_REPARENTED` and
76+
`sys::event::FilterFlag::NOTE_REAP` on OSX and ios.
77+
(#[1255](https://github.com/nix-rust/nix/pull/1255))
78+
79+
- Removed `sys::ptrace::ptrace` on Android and Linux.
7680
(#[1255](https://github.com/nix-rust/nix/pull/1255))
7781

7882
## [0.17.0] - 3 February 2020

test/test_unistd.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -566,9 +566,9 @@ fn test_pipe() {
566566
target_os = "emscripten",
567567
target_os = "freebsd",
568568
target_os = "linux",
569-
target_os = "redox",
570569
target_os = "netbsd",
571-
target_os = "openbsd"))]
570+
target_os = "openbsd",
571+
target_os = "redox"))]
572572
#[test]
573573
fn test_pipe2() {
574574
let (fd0, fd1) = pipe2(OFlag::O_CLOEXEC).unwrap();

0 commit comments

Comments
 (0)