File tree 2 files changed +5
-1
lines changed
2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -25,6 +25,10 @@ This project adheres to [Semantic Versioning](https://semver.org/).
25
25
64-bit Android, change conditional compilation to include the field in
26
26
64-bit Android builds
27
27
(#[ 1471] ( https://github.com/nix-rust/nix/pull/1471 ) )
28
+ - ` eventfd ` s are supported on Android, change conditional compilation to
29
+ include ` sys::eventfd::eventfd ` and ` sys::eventfd::EfdFlags ` for Android
30
+ builds.
31
+ (#[ 1481] ( https://github.com/nix-rust/nix/pull/1481 ) )
28
32
29
33
### Fixed
30
34
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ pub mod epoll;
17
17
target_os = "openbsd" ) ) ]
18
18
pub mod event;
19
19
20
- #[ cfg( target_os = "linux" ) ]
20
+ #[ cfg( any ( target_os = "android" , target_os = " linux") ) ]
21
21
pub mod eventfd;
22
22
23
23
#[ cfg( any( target_os = "android" ,
You can’t perform that action at this time.
0 commit comments