File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -26,6 +26,7 @@ This project adheres to [Semantic Versioning](https://semver.org/).
26
26
([ #2085 ] ( https://github.com/nix-rust/nix/pull/2085 ) )
27
27
- Added ` SO_RTABLE ` for OpenBSD and ` SO_ACCEPTFILTER ` for FreeBSD/NetBSD to ` nix::sys::socket::sockopt ` .
28
28
([ #2085 ] ( https://github.com/nix-rust/nix/pull/2085 ) )
29
+ - Removed ` flock ` from ` ::nix::fcntl ` on Solaris. ([ #2082 ] ( https://github.com/nix-rust/nix/pull/2082 ) )
29
30
30
31
### Changed
31
32
Original file line number Diff line number Diff line change @@ -559,7 +559,7 @@ pub enum FlockArg {
559
559
UnlockNonblock ,
560
560
}
561
561
562
- #[ cfg( not( target_os = "redox" ) ) ]
562
+ #[ cfg( not( any ( target_os = "redox" , target_os = "solaris" ) ) ) ]
563
563
pub fn flock( fd: RawFd , arg: FlockArg ) -> Result <( ) > {
564
564
use self :: FlockArg :: * ;
565
565
You can’t perform that action at this time.
0 commit comments