Changeset 47826 in vbox
- Timestamp:
- Aug 17, 2013 11:51:57 PM (11 years ago)
- Location:
- trunk/src/VBox
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/misc/assert.cpp
r44528 r47826 138 138 #else /* !IN_RING0 */ 139 139 # if !defined(IN_RING3) && !defined(LOG_NO_COM) 140 # if 0 /* Enable this iff you have a COM port and really want this debug info. */ 140 141 RTLogComPrintf("\n!!Assertion Failed!!\n" 141 142 "Expression: %s\n" 142 143 "Location : %s(%d) %s\n", 143 144 pszExpr, pszFile, uLine, pszFunction); 145 # endif 144 146 # endif 145 147 -
trunk/src/VBox/VMM/VMMR0/TRPMR0.cpp
r42025 r47826 46 46 pVCpu->trpm.s.uActiveVector = UINT32_MAX; 47 47 AssertMsgReturnVoid(uActiveVector < 256, ("uActiveVector=%#x is invalid! (More assertions to come, please enjoy!)\n", uActiveVector)); 48 RTLogPrintf("uActiveVector=%d\n", uActiveVector); 48 49 49 50 #if HC_ARCH_BITS == 64 && defined(RT_OS_DARWIN) -
trunk/src/VBox/VMM/VMMRC/TRPMRCHandlers.cpp
r47699 r47826 400 400 { 401 401 LogFlow(("TRPMGCTrap02Handler: cs:eip=%04x:%08x\n", pRegFrame->cs.Sel, pRegFrame->eip)); 402 #if 0 /* Enable this iff you have a COM port and really want this debug info. */ 402 403 RTLogComPrintf("TRPMGCTrap02Handler: cs:eip=%04x:%08x\n", pRegFrame->cs.Sel, pRegFrame->eip); 404 #endif 403 405 NOREF(pTrpmCpu); 404 406 return VERR_TRPM_DONT_PANIC; … … 424 426 { 425 427 LogFlow(("TRPMGCHyperTrap02Handler: cs:eip=%04x:%08x\n", pRegFrame->cs.Sel, pRegFrame->eip)); 428 #if 0 /* Enable this iff you have a COM port and really want this debug info. */ 426 429 RTLogComPrintf("TRPMGCHyperTrap02Handler: cs:eip=%04x:%08x\n", pRegFrame->cs.Sel, pRegFrame->eip); 430 #endif 427 431 NOREF(pTrpmCpu); 428 432 return VERR_TRPM_DONT_PANIC;
Note:
See TracChangeset
for help on using the changeset viewer.