about summary refs log tree commit diff
path: root/library/std/src/os/mod.rs
diff options
context:
space:
mode:
authorStefan Lankes <slankes@eonerc.rwth-aachen.de>2024-06-12 20:18:33 +0200
committerStefan Lankes <slankes@eonerc.rwth-aachen.de>2024-06-12 20:46:52 +0200
commitc462328382b9fc1c39ffca3f519f7559717b2ccc (patch)
tree1dffea0d0a52884df5dcf4e6c161ed4621eec847 /library/std/src/os/mod.rs
parentbbe9a9c20bac888efae2c7f033fb6cb3925a65b7 (diff)
downloadrust-c462328382b9fc1c39ffca3f519f7559717b2ccc.tar.gz
rust-c462328382b9fc1c39ffca3f519f7559717b2ccc.zip
export std::os::fd module on HermitOS
The HermitOS' IO interface is similiar to Unix. Consequently,
this PR synchronize the FD implementation between both.
Diffstat (limited to 'library/std/src/os/mod.rs')
-rw-r--r--library/std/src/os/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/std/src/os/mod.rs b/library/std/src/os/mod.rs
index ca3584e82f9..d2a7b316b81 100644
--- a/library/std/src/os/mod.rs
+++ b/library/std/src/os/mod.rs
@@ -160,7 +160,7 @@ pub(crate) mod watchos;
 #[cfg(target_os = "xous")]
 pub mod xous;
 
-#[cfg(any(unix, target_os = "wasi", doc))]
+#[cfg(any(unix, target_os = "hermit", target_os = "wasi", doc))]
 pub mod fd;
 
 #[cfg(any(target_os = "linux", target_os = "android", doc))]