VMFaultInfo
include vmm.inc
VMFaultInfo struc
VMFI_EIP dd ? ;
VMFI_CS dw ? ;
VMFI_Ints dw ? ;
VMFaultInfo ends
The VMFaultInfo structure contains data that describes the client state at the time of a fault in the virtual machine.
- VMFI_EIP and VMFI_CS
- Specifies the value of the instruction pointer and the code segment address at the time the fault occurred.
- VMFI_Ints
- Indicates the interrupt request lines (IRQs) that were in service when the fault occurred. Bit 0 is set if IRQ 0 was in service, bit 1 is set if IRQ 1 was in service, and so on.
See Also
GetSetDetailedVMError