File tree Expand file tree Collapse file tree 2 files changed +10
-6
lines changed Expand file tree Collapse file tree 2 files changed +10
-6
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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]
573573fn test_pipe2 ( ) {
574574 let ( fd0, fd1) = pipe2 ( OFlag :: O_CLOEXEC ) . unwrap ( ) ;
You can’t perform that action at this time.
0 commit comments