(&self)
| 1649 | |
| 1650 | #[cfg(target_arch = "x86_64")] |
| 1651 | pub fn common_cpuid(&self) -> Vec<CpuIdEntry> { |
| 1652 | assert!(!self.cpuid.is_empty()); |
| 1653 | self.cpuid.clone() |
| 1654 | } |
| 1655 | |
| 1656 | /// Locks the vCPU states and calls [`Self::active_vcpus`]. |
| 1657 | fn present_vcpus(&self) -> u32 { |
no test coverage detected