VM_Resume


include vmm.inc

mov     ebx, VMHandle
mov     eax, VM_Resume
VMMcall System_Control

Notifies the virtual device that the virtual machine is resuming after having been suspended. The virtual device should lock any resources, and prepare internal data structures for the virtual machine to start running again. The virtual device may modify all general registers and flags.

VMHandle

Handle of the virtual machine to resume.

The system never sends the VM_Resume message without having first sent a VM_Suspend message.

See also VM_Suspend