MCPcopy Create free account
hub / github.com/cloud-hypervisor/cloud-hypervisor / start_boot_vcpus

Method start_boot_vcpus

vmm/src/cpu.rs:1515–1517  ·  view source on GitHub ↗

Starts all the vCPUs that the VM is booting with. Blocks until all vCPUs are running.

(&mut self, paused: bool)

Source from the content-addressed store, hash-verified

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<()> {

Callers 1

bootMethod · 0.80

Calls 2

activate_vcpusMethod · 0.80
boot_vcpusMethod · 0.80

Tested by

no test coverage detected