Changeset 19682 in vbox for trunk/src/VBox/VMM/VMMAll
- Timestamp:
- May 14, 2009 10:15:44 AM (16 years ago)
- Location:
- trunk/src/VBox/VMM/VMMAll
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/PDMAllCritSect.cpp
r19597 r19682 218 218 PVM pVM = pCritSect->s.CTX_SUFF(pVM); 219 219 Assert(pVM); 220 221 #ifdef VBOX_STRICT 220 222 PVMCPU pVCpu = VMMGetCpu(pVM); 221 223 Assert(pVCpu); 222 224 AssertMsg(pCritSect->s.Core.NativeThreadOwner == pVCpu->hNativeThread, ("Owner %RX64 emt=%RX64\n", pCritSect->s.Core.NativeThreadOwner, pVCpu->hNativeThread)); 225 #endif 223 226 224 227 /* … … 232 235 return; 233 236 } 234 237 #ifndef VBOX_STRICT 238 PVMCPU pVCpu = VMMGetCpu(pVM); 239 #endif 235 240 /* 236 241 * Try leave it. -
trunk/src/VBox/VMM/VMMAll/PGMAll.cpp
r19516 r19682 2030 2030 } 2031 2031 2032 2033 2032 /** 2034 2033 * Check if this VCPU currently owns the PGM lock.
Note:
See TracChangeset
for help on using the changeset viewer.