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/).
69
69
optional arguments.
70
70
(#[ 1242] ( https://github.com/nix-rust/nix/pull/1242 ) )
71
71
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.
76
80
(#[ 1255] ( https://github.com/nix-rust/nix/pull/1255 ) )
77
81
78
82
## [ 0.17.0] - 3 February 2020
Original file line number Diff line number Diff line change @@ -566,9 +566,9 @@ fn test_pipe() {
566
566
target_os = "emscripten" ,
567
567
target_os = "freebsd" ,
568
568
target_os = "linux" ,
569
- target_os = "redox" ,
570
569
target_os = "netbsd" ,
571
- target_os = "openbsd" ) ) ]
570
+ target_os = "openbsd" ,
571
+ target_os = "redox" ) ) ]
572
572
#[ test]
573
573
fn test_pipe2 ( ) {
574
574
let ( fd0, fd1) = pipe2 ( OFlag :: O_CLOEXEC ) . unwrap ( ) ;
You can’t perform that action at this time.
0 commit comments