pub trait SetVpRegisters {
// Required method
fn set_vp_registers(
&mut self,
partition_id: u64,
vp_index: u32,
vtl: Option<Vtl>,
registers: &[HvRegisterAssoc],
) -> HvRepResult;
}Expand description
Implements the HvSetVpRegisters hypercall.
Required Methods§
Sourcefn set_vp_registers(
&mut self,
partition_id: u64,
vp_index: u32,
vtl: Option<Vtl>,
registers: &[HvRegisterAssoc],
) -> HvRepResult
fn set_vp_registers( &mut self, partition_id: u64, vp_index: u32, vtl: Option<Vtl>, registers: &[HvRegisterAssoc], ) -> HvRepResult
Sets the requested registers.