Changeset 49215 in vbox for trunk/src/VBox/VMM/VMMR0
- Timestamp:
- Oct 21, 2013 3:14:54 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR0/VMMR0.cpp
r49026 r49215 817 817 VMMR0DECL(void) VMMR0EntryFast(PVM pVM, VMCPUID idCpu, VMMR0OPERATION enmOperation) 818 818 { 819 /* 820 * Validation. 821 */ 819 822 if (RT_UNLIKELY(idCpu >= pVM->cCpus)) 820 823 return; 821 824 PVMCPU pVCpu = &pVM->aCpus[idCpu]; 822 825 if (RT_UNLIKELY(pVCpu->hNativeThreadR0 != RTThreadNativeSelf())) 826 return; 827 828 /* 829 * Perform requested operation. 830 */ 823 831 switch (enmOperation) 824 832 {
Note:
See TracChangeset
for help on using the changeset viewer.