microsoft/openvmm
Publicmirrored fromhttps://github.com/microsoft/openvmmAvailable
openhcl/minimal_rt/src/lib.rs
16lines · modecode
| 1 | // Copyright (c) Microsoft Corporation. |
| 2 | // Licensed under the MIT License. |
| 3 | |
| 4 | //! Minimal support runtime for `openhcl_boot` and other kernel-mode |
| 5 | //! environments. |
| 6 | |
| 7 | #![no_std] |
| 8 | // UNSAFETY: Interacting with low level hardware and bootloader primitives. |
| 9 | #![allow(unsafe_code)] |
| 10 | #![warn(missing_docs)] |
| 11 | |
| 12 | pub mod arch; |
| 13 | pub mod enlightened_panic; |
| 14 | pub mod reftime; |
| 15 | pub mod reloc; |
| 16 | pub mod rt; |
| 17 | |