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/).
11
11
- Added fine-grained features flags. Most Nix functionality can now be
12
12
conditionally enabled. By default, all features are enabled.
13
13
(#[ 1611] ( https://github.com/nix-rust/nix/pull/1611 ) )
14
+ - Added ` EPOLLEXCLUSIVE ` on Android.
15
+ (#[ 1567] ( https://github.com/nix-rust/nix/pull/1567 ) )
14
16
15
17
### Changed
16
18
### Fixed
Original file line number Diff line number Diff line change @@ -18,8 +18,6 @@ libc_bitflags!(
18
18
EPOLLERR ;
19
19
EPOLLHUP ;
20
20
EPOLLRDHUP ;
21
- #[ cfg( target_os = "linux" ) ] // Added in 4.5; not in Android.
22
- #[ cfg_attr( docsrs, doc( cfg( all( ) ) ) ) ]
23
21
EPOLLEXCLUSIVE ;
24
22
#[ cfg( not( target_arch = "mips" ) ) ]
25
23
EPOLLWAKEUP ;
Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ mod test_ioctl;
30
30
mod test_wait;
31
31
mod test_uio;
32
32
33
- #[ cfg( target_os = "linux" ) ]
33
+ #[ cfg( any ( target_os = "android" , target_os = " linux") ) ]
34
34
mod test_epoll;
35
35
#[ cfg( target_os = "linux" ) ]
36
36
mod test_inotify;
You can’t perform that action at this time.
0 commit comments