File tree Expand file tree Collapse file tree 4 files changed +12
-3
lines changed Expand file tree Collapse file tree 4 files changed +12
-3
lines changed Original file line number Diff line number Diff line change 3
3
All notable changes to this project will be documented in this file.
4
4
This project adheres to [ Semantic Versioning] ( https://semver.org/ ) .
5
5
6
+ ## [ Unreleased] - ReleaseDate
7
+ ### Added
8
+
9
+ - Added ` EPOLLEXCLUSIVE ` on Android.
10
+ (#[ 1567] ( https://github.com/nix-rust/nix/pull/1567 ) )
11
+
12
+ ### Changed
13
+ ### Fixed
14
+ ### Removed
15
+
6
16
## [ 0.23.0] - 2021-09-28
7
17
### Added
8
18
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ targets = [
25
25
]
26
26
27
27
[dependencies ]
28
- libc = { version = " 0.2.102 " , features = [ " extra_traits" ] }
28
+ libc = { version = " 0.2.104 " , features = [ " extra_traits" ] }
29
29
bitflags = " 1.3.1"
30
30
cfg-if = " 1.0"
31
31
Original file line number Diff line number Diff line change @@ -18,7 +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
21
EPOLLEXCLUSIVE ;
23
22
#[ cfg( not( target_arch = "mips" ) ) ]
24
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