GetVpRegisters

Trait GetVpRegisters 

Source
pub trait GetVpRegisters {
    // Required method
    fn get_vp_registers(
        &mut self,
        partition_id: u64,
        vp_index: u32,
        vtl: Option<Vtl>,
        registers: &[HvRegisterName],
        output: &mut [HvRegisterValue],
    ) -> HvRepResult;
}
Expand description

Implements the HvGetVpRegisters hypercall.

Required Methods§

Source

fn get_vp_registers( &mut self, partition_id: u64, vp_index: u32, vtl: Option<Vtl>, registers: &[HvRegisterName], output: &mut [HvRegisterValue], ) -> HvRepResult

Gets the requested registers.

Implementors§