hvlite_core/
lib.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.

//! This crate implements the core VM worker for hvlite. This includes static
//! configuration of hvlite platform resources, such as the clock source and
//! memory management.
//!
//! Try not to add new functionality to this crate. Add it to other crates, and
//! reference new functionality via `Resource`s when you can to minimize build
//! time.

#![forbid(unsafe_code)]

mod emuplat;
mod partition;
mod vmgs_non_volatile_store;
mod worker;

pub use worker::dispatch::VmWorker;