Searched defs:VM_IS_EMT (Results 1 - 1 of 1) sorted by relevance

/vbox/include/VBox/vmm/
H A Dvm.h628 /** @def VM_IS_EMT
635 # define VM_IS_EMT(pVM) true macro
637 # define VM_IS_EMT(pVM) (VMMGetCpu(pVM) != NULL) macro
654 # define VM_ASSERT_EMT(pVM) Assert(VM_IS_EMT(pVM))
656 # define VM_ASSERT_EMT(pVM) Assert(VM_IS_EMT(pVM))
659 AssertMsg(VM_IS_EMT(pVM), \
684 # define VM_ASSERT_EMT_RETURN(pVM, rc) AssertReturn(VM_IS_EMT(pVM), (rc))
686 # define VM_ASSERT_EMT_RETURN(pVM, rc) AssertReturn(VM_IS_EMT(pVM), (rc))
689 AssertMsgReturn(VM_IS_EMT(pVM), \
762 AssertMsg(!VM_IS_EMT(pV
[all...]

Completed in 4402 milliseconds