Starts all the vCPUs that the VM is booting with. Blocks until all vCPUs are running.
(&mut self, paused: bool)
| 1513 | |
| 1514 | // Starts all the vCPUs that the VM is booting with. Blocks until all vCPUs are running. |
| 1515 | pub fn start_boot_vcpus(&mut self, paused: bool) -> Result<()> { |
| 1516 | self.activate_vcpus(self.boot_vcpus(), false, Some(paused)) |
| 1517 | } |
| 1518 | |
| 1519 | #[cfg(feature = "mshv")] |
| 1520 | pub fn set_processors_per_socket_property(&self) -> Result<()> { |
no test coverage detected