File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Expand file tree Collapse file tree 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/).
2525 64-bit Android, change conditional compilation to include the field in
2626 64-bit Android builds
2727 (#[ 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 ) )
2832
2933### Fixed
3034
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ pub mod epoll;
1717 target_os = "openbsd" ) ) ]
1818pub mod event;
1919
20- #[ cfg( target_os = "linux" ) ]
20+ #[ cfg( any ( target_os = "android" , target_os = " linux") ) ]
2121pub mod eventfd;
2222
2323#[ cfg( any( target_os = "android" ,
You can’t perform that action at this time.
0 commit comments