microsoft/openvmm

Public

mirrored fromhttps://github.com/microsoft/openvmmAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
e1cdda602823a24e5785dbcb350e21da7f113215

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

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
12pub mod arch;
13pub mod enlightened_panic;
14pub mod reftime;
15pub mod reloc;
16pub mod rt;
17