Changeset 92408 in vbox for trunk/src/VBox/VMM/VMMRZ
- Timestamp:
- Nov 12, 2021 9:49:06 PM (3 years ago)
- svn:sync-xref-src-repo-rev:
- 148263
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMRZ/VMMRZ.cpp
r92395 r92408 44 44 #endif 45 45 46 Assert(pVCpu->vmm .s.cCallRing3Disabled < 16);47 if (ASMAtomicUoIncU32(&pVCpu->vmm .s.cCallRing3Disabled) == 1)46 Assert(pVCpu->vmmr0.s.cCallRing3Disabled < 16); 47 if (ASMAtomicUoIncU32(&pVCpu->vmmr0.s.cCallRing3Disabled) == 1) 48 48 { 49 49 #ifdef IN_RC … … 73 73 #endif 74 74 75 Assert(pVCpu->vmm .s.cCallRing3Disabled > 0);76 if (ASMAtomicUoDecU32(&pVCpu->vmm .s.cCallRing3Disabled) == 0)75 Assert(pVCpu->vmmr0.s.cCallRing3Disabled > 0); 76 if (ASMAtomicUoDecU32(&pVCpu->vmmr0.s.cCallRing3Disabled) == 0) 77 77 { 78 78 #ifdef IN_RC … … 98 98 { 99 99 VMCPU_ASSERT_EMT(pVCpu); 100 Assert(pVCpu->vmm .s.cCallRing3Disabled <= 16);101 return pVCpu->vmm .s.cCallRing3Disabled == 0;100 Assert(pVCpu->vmmr0.s.cCallRing3Disabled <= 16); 101 return pVCpu->vmmr0.s.cCallRing3Disabled == 0; 102 102 } 103 103
Note:
See TracChangeset
for help on using the changeset viewer.