vmm_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.

//! Core building blocks for managing vm and vm related state to build a vmm.
//! Used by both hvlite and underhill today.

#![expect(missing_docs)]

pub mod acpi_builder;
pub mod cpuid;
pub mod device_builder;
pub mod emuplat;
pub mod input_distributor;
pub mod partition_unit;
pub mod platform_resolvers;
pub mod synic;
pub mod vmbus_unit;
pub mod vmotherboard_adapter;
pub mod vmtime_unit;