(&self, cpu_id: u8)
| 1972 | |
| 1973 | #[cfg(all(target_arch = "x86_64", feature = "guest_debug"))] |
| 1974 | fn create_standard_regs(&self, cpu_id: u8) -> StandardRegisters { |
| 1975 | self.vcpus[usize::from(cpu_id)] |
| 1976 | .lock() |
| 1977 | .unwrap() |
| 1978 | .vcpu |
| 1979 | .create_standard_regs() |
| 1980 | } |
| 1981 | |
| 1982 | #[cfg(feature = "guest_debug")] |
| 1983 | fn get_regs(&self, cpu_id: u8) -> Result<StandardRegisters> { |
no outgoing calls