Changeset 49486 in vbox for trunk/src/VBox/VMM/VMMAll
- Timestamp:
- Nov 14, 2013 4:38:53 PM (11 years ago)
- Location:
- trunk/src/VBox/VMM/VMMAll
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/PDMAllCritSect.cpp
r45152 r49486 269 269 PVMCPU pVCpu = VMMGetCpu(pVM); 270 270 HMR0Leave(pVM, pVCpu); 271 RTThreadPreemptRestore(NIL_RTTHREAD, ????);271 RTThreadPreemptRestore(NIL_RTTHREAD, XXX); 272 272 273 273 rc = pdmR3R0CritSectEnterContended(pCritSect, hNativeSelf, pSrcPos); 274 274 275 RTThreadPreemptDisable(NIL_RTTHREAD, ????);275 RTThreadPreemptDisable(NIL_RTTHREAD, XXX); 276 276 HMR0Enter(pVM, pVCpu); 277 277 } -
trunk/src/VBox/VMM/VMMAll/PDMAllCritSectRw.cpp
r48936 r49486 432 432 VMMDECL(int) PDMCritSectRwEnterSharedDebug(PPDMCRITSECTRW pThis, int rcBusy, RTHCUINTPTR uId, RT_SRC_POS_DECL) 433 433 { 434 NOREF(uId); NOREF(pszFile); NOREF(iLine); NOREF(pszFunction); 434 435 #if !defined(PDMCRITSECTRW_STRICT) || !defined(IN_RING3) 435 436 return pdmCritSectRwEnterShared(pThis, rcBusy, false /*fTryOnly*/, NULL, false /*fNoVal*/); … … 492 493 VMMDECL(int) PDMCritSectRwTryEnterSharedDebug(PPDMCRITSECTRW pThis, RTHCUINTPTR uId, RT_SRC_POS_DECL) 493 494 { 495 NOREF(uId); NOREF(pszFile); NOREF(iLine); NOREF(pszFunction); 494 496 #if !defined(PDMCRITSECTRW_STRICT) || !defined(IN_RING3) 495 497 return pdmCritSectRwEnterShared(pThis, VERR_SEM_BUSY, true /*fTryOnly*/, NULL, false /*fNoVal*/); … … 965 967 VMMDECL(int) PDMCritSectRwEnterExclDebug(PPDMCRITSECTRW pThis, int rcBusy, RTHCUINTPTR uId, RT_SRC_POS_DECL) 966 968 { 969 NOREF(uId); NOREF(pszFile); NOREF(iLine); NOREF(pszFunction); 967 970 #if !defined(PDMCRITSECTRW_STRICT) || !defined(IN_RING3) 968 971 return pdmCritSectRwEnterExcl(pThis, rcBusy, false /*fTryAgain*/, NULL, false /*fNoVal*/); … … 1021 1024 VMMDECL(int) PDMCritSectRwTryEnterExclDebug(PPDMCRITSECTRW pThis, RTHCUINTPTR uId, RT_SRC_POS_DECL) 1022 1025 { 1026 NOREF(uId); NOREF(pszFile); NOREF(iLine); NOREF(pszFunction); 1023 1027 #if !defined(PDMCRITSECTRW_STRICT) || !defined(IN_RING3) 1024 1028 return pdmCritSectRwEnterExcl(pThis, VERR_SEM_BUSY, true /*fTryAgain*/, NULL, false /*fNoVal*/); -
trunk/src/VBox/VMM/VMMAll/PGMAll.cpp
r47444 r49486 809 809 VMMDECL(VBOXSTRICTRC) PGMInterpretInstruction(PVM pVM, PVMCPU pVCpu, PCPUMCTXCORE pRegFrame, RTGCPTR pvFault) 810 810 { 811 NOREF(pVM); 811 812 VBOXSTRICTRC rc = EMInterpretInstruction(pVCpu, pRegFrame, pvFault); 812 813 if (rc == VERR_EM_INTERPRETER) -
trunk/src/VBox/VMM/VMMAll/PGMAllPhys.cpp
r47792 r49486 1012 1012 { 1013 1013 PGM_LOCK_ASSERT_OWNER(pVM); 1014 NOREF(GCPhys); 1014 1015 1015 1016 #if defined(IN_RC) || defined(VBOX_WITH_2X_4GB_ADDR_SPACE_IN_R0) … … 1021 1022 Assert(HCPhys != pVM->pgm.s.HCPhysZeroPg); 1022 1023 pgmRZDynMapHCPageInlined(VMMGetCpu(pVM), HCPhys, ppv RTLOG_COMMA_SRC_POS); 1023 NOREF(GCPhys);1024 1024 return VINF_SUCCESS; 1025 1025 -
trunk/src/VBox/VMM/VMMAll/VMMAll.cpp
r48441 r49486 71 71 void *pvUser) 72 72 { 73 NOREF(pszType); NOREF(cchWidth); NOREF(cchPrecision); NOREF(fFlags); 74 73 75 PCVMCPUSET pSet = (PCVMCPUSET)pvValue; 74 76 uint32_t cCpus = 0;
Note:
See TracChangeset
for help on using the changeset viewer.