We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 00f6981 commit e357d60Copy full SHA for e357d60
CHANGELOG.md
@@ -6,6 +6,8 @@ This project adheres to [Semantic Versioning](https://semver.org/).
6
## [Unreleased] - ReleaseDate
7
### Added
8
9
+- Added `memfd` on Android.
10
+ (#[1773](https://github.com/nix-rust/nix/pull/1773))
11
- Added ETH_P_ALL to SockProtocol enum
12
(#[1768](https://github.com/nix-rust/nix/pull/1768))
13
- Added four non-standard Linux `SysconfVar` variants
src/sys/mod.rs
@@ -50,7 +50,7 @@ feature! {
50
#[macro_use]
51
pub mod ioctl;
52
53
-#[cfg(target_os = "linux")]
+#[cfg(any(target_is = "android", target_os = "linux"))]
54
feature! {
55
#![feature = "fs"]
56
pub mod memfd;
0 commit comments