vmm: Move CPU management code to its own module

Move CpuManager, Vcpu and related functionality to its own module (and
file) inside the VMM crate

Signed-off-by: Rob Bradford <robert.bradford@intel.com>
This commit is contained in:
Rob Bradford
2019-11-11 13:55:50 +00:00
parent 7b77189c80
commit 6958ec4922
3 changed files with 528 additions and 487 deletions
+1
View File
@@ -27,6 +27,7 @@ use vmm_sys_util::eventfd::EventFd;
pub mod api;
pub mod config;
pub mod cpu;
pub mod device_manager;
pub mod vm;