(&self)
| 1676 | |
| 1677 | #[cfg(target_arch = "aarch64")] |
| 1678 | pub fn get_saved_states(&self) -> Vec<CpuState> { |
| 1679 | self.vcpus |
| 1680 | .iter() |
| 1681 | .map(|cpu| cpu.lock().unwrap().get_saved_state().unwrap()) |
| 1682 | .collect() |
| 1683 | } |
| 1684 | |
| 1685 | pub fn get_vcpu_topology(&self) -> Option<(u16, u16, u16, u16)> { |
| 1686 | self.config.topology.clone().map(|t| { |
no test coverage detected