mirror of
https://github.com/edera-dev/krata.git
synced 2025-08-05 06:01:32 +00:00
* chore(xen): move domain creation to xenplatform * chore(xen): move device transactions into separate interface
13 lines
184 B
Rust
13 lines
184 B
Rust
pub mod boot;
|
|
pub mod elfloader;
|
|
pub mod error;
|
|
pub mod mem;
|
|
pub mod sys;
|
|
|
|
use crate::error::Error;
|
|
|
|
pub mod domain;
|
|
pub mod unsupported;
|
|
#[cfg(target_arch = "x86_64")]
|
|
pub mod x86pv;
|