Skip to content

Commit

Permalink
Respond to review comments
Browse files Browse the repository at this point in the history
  • Loading branch information
asomers committed Jun 6, 2020
1 parent f698fd3 commit d080785
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 6 deletions.
12 changes: 8 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,10 +69,14 @@ This project adheres to [Semantic Versioning](http://semver.org/).
optional arguments.
(#[1242](https://github.com/nix-rust/nix/pull/1242))

- Removed `unistd::daemon`, `unistd::pipe2`,
`sys::event::FilterFlag::NOTE_EXIT_REPARENTED`, and
`sys::event::FilterFlag::NOTE_REAP` on OSX and ios. Removed
`sys::ptrace::ptrace` on Android and Linux.
- Removed `unistd::daemon` and `unistd::pipe2` on OSX and ios
(#[1255](https://github.com/nix-rust/nix/pull/1255))

- Removed `sys::event::FilterFlag::NOTE_EXIT_REPARENTED` and
`sys::event::FilterFlag::NOTE_REAP` on OSX and ios.
(#[1255](https://github.com/nix-rust/nix/pull/1255))

- Removed `sys::ptrace::ptrace` on Android and Linux.
(#[1255](https://github.com/nix-rust/nix/pull/1255))

## [0.17.0] - 3 February 2020
Expand Down
4 changes: 2 additions & 2 deletions test/test_unistd.rs
Original file line number Diff line number Diff line change
Expand Up @@ -566,9 +566,9 @@ fn test_pipe() {
target_os = "emscripten",
target_os = "freebsd",
target_os = "linux",
target_os = "redox",
target_os = "netbsd",
target_os = "openbsd"))]
target_os = "openbsd",
target_os = "redox"))]
#[test]
fn test_pipe2() {
let (fd0, fd1) = pipe2(OFlag::O_CLOEXEC).unwrap();
Expand Down

0 comments on commit d080785

Please sign in to comment.