File tree Expand file tree Collapse file tree 2 files changed +10
-1
lines changed Expand file tree Collapse file tree 2 files changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -72,6 +72,10 @@ This project adheres to [Semantic Versioning](http://semver.org/).
72
72
([ #825 ] ( https://github.com/nix-rust/nix/pull/825 ) )
73
73
- Exposed ` termios::cfmakesane ` on FreeBSD.
74
74
([ #825 ] ( https://github.com/nix-rust/nix/pull/825 ) )
75
+ - Exposed ` MSG_CMSG_CLOEXEC ` on * BSD.
76
+ ([ #825 ] ( https://github.com/nix-rust/nix/pull/825 ) )
77
+ - Fixed ioctls that write integers directly on FreeBSD and DragonFly.
78
+ ([ #825 ] ( https://github.com/nix-rust/nix/pull/825 ) )
75
79
76
80
### Changed
77
81
- Exposed the ` mqueue ` module for all supported operating systems.
Original file line number Diff line number Diff line change @@ -163,7 +163,12 @@ libc_bitflags!{
163
163
/// [open(2)](http://pubs.opengroup.org/onlinepubs/9699919799/functions/open.html).
164
164
///
165
165
/// Only used in [`recvmsg`](fn.recvmsg.html) function.
166
- #[ cfg( any( target_os = "linux" , target_os = "android" ) ) ]
166
+ #[ cfg( any( target_os = "android" ,
167
+ target_os = "dragonfly" ,
168
+ target_os = "freebsd" ,
169
+ target_os = "linux" ,
170
+ target_os = "netbsd" ,
171
+ target_os = "openbsd" ) ) ]
167
172
MSG_CMSG_CLOEXEC ;
168
173
}
169
174
}
You can’t perform that action at this time.
0 commit comments