File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -11,6 +11,8 @@ This project adheres to [Semantic Versioning](https://semver.org/).
1111- Added fine-grained features flags. Most Nix functionality can now be
1212 conditionally enabled. By default, all features are enabled.
1313 (#[ 1611] ( https://github.com/nix-rust/nix/pull/1611 ) )
14+ - Added ` EPOLLEXCLUSIVE ` on Android.
15+ (#[ 1567] ( https://github.com/nix-rust/nix/pull/1567 ) )
1416
1517### Changed
1618### Fixed
Original file line number Diff line number Diff line change @@ -18,8 +18,6 @@ libc_bitflags!(
1818 EPOLLERR ;
1919 EPOLLHUP ;
2020 EPOLLRDHUP ;
21- #[ cfg( target_os = "linux" ) ] // Added in 4.5; not in Android.
22- #[ cfg_attr( docsrs, doc( cfg( all( ) ) ) ) ]
2321 EPOLLEXCLUSIVE ;
2422 #[ cfg( not( target_arch = "mips" ) ) ]
2523 EPOLLWAKEUP ;
Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ mod test_ioctl;
3030mod test_wait;
3131mod test_uio;
3232
33- #[ cfg( target_os = "linux" ) ]
33+ #[ cfg( any ( target_os = "android" , target_os = " linux") ) ]
3434mod test_epoll;
3535#[ cfg( target_os = "linux" ) ]
3636mod test_inotify;
You can’t perform that action at this time.
0 commit comments