about summary refs log tree commit diff
path: root/library/std/src/os/uefi/mod.rs
diff options
context:
space:
mode:
authorAyush Singh <ayushsingh1325@gmail.com>2022-12-18 09:54:54 +0530
committerAyush Singh <ayushdevel1325@gmail.com>2023-09-22 17:23:30 +0530
commit48c6ae0611ec6fb4094a24610982ddefde16e20f (patch)
tree9d1554238f804bed880ed58b1ee2230c0019e723 /library/std/src/os/uefi/mod.rs
parent5a4e47ebedb4132168c1b22262f21f0d3a2a96df (diff)
downloadrust-48c6ae0611ec6fb4094a24610982ddefde16e20f.tar.gz
rust-48c6ae0611ec6fb4094a24610982ddefde16e20f.zip
Add Minimal Std implementation for UEFI
Implemented modules:
1. alloc
2. os_str
3. env
4. math

Tracking Issue: https://github.com/rust-lang/rust/issues/100499
API Change Proposal: https://github.com/rust-lang/libs-team/issues/87

This was originally part of https://github.com/rust-lang/rust/pull/100316. Since
that PR was becoming too unwieldy and cluttered, and with suggestion
from @dvdhrm, I have extracted a minimal std implementation to this PR.

Signed-off-by: Ayush Singh <ayushsingh1325@gmail.com>
Diffstat (limited to 'library/std/src/os/uefi/mod.rs')
-rw-r--r--library/std/src/os/uefi/mod.rs7
1 files changed, 7 insertions, 0 deletions
diff --git a/library/std/src/os/uefi/mod.rs b/library/std/src/os/uefi/mod.rs
new file mode 100644
index 00000000000..fc0468f25fc
--- /dev/null
+++ b/library/std/src/os/uefi/mod.rs
@@ -0,0 +1,7 @@
+//! Platform-specific extensions to `std` for UEFI.
+
+#![unstable(feature = "uefi_std", issue = "100499")]
+
+pub mod env;
+#[path = "../windows/ffi.rs"]
+pub mod ffi;