axvm 0.5.26

Virtual Machine resource management crate for ArceOS's hypervisor variant.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Architecture-neutral ACPI image layout and QEMU loader composition.

mod arena;
mod error;
#[cfg(any(target_arch = "x86_64", test))]
mod image;
mod loader;

#[cfg(any(target_arch = "x86_64", test))]
pub(crate) use arena::AcpiAllocation;
pub(crate) use arena::AcpiTableArena;
pub use error::AcpiBuildError;
#[cfg(any(target_arch = "x86_64", test))]
pub(crate) use image::{AcpiImage, AcpiTableRecord, AcpiTableSet};
pub(crate) use loader::{AcpiLoaderPlan, LoaderZone};