Changeset 14809 in vbox for trunk/src/VBox/VMM
- Timestamp:
- Nov 29, 2008 11:22:01 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/PGMAllPool.cpp
r14754 r14809 2479 2479 return; 2480 2480 } 2481 #if defined(DEBUG) && !defined(IN_RING0) ///@todo RTLogPrintf is missing in R0.2481 #ifdef LOG_ENABLED 2482 2482 RTLogPrintf("cRefs=%d iFirstPresent=%d cPresent=%d\n", cRefs, pPage->iFirstPresent, pPage->cPresent); 2483 2483 for (unsigned i = 0; i < RT_ELEMENTS(pPT->a); i++) … … 2509 2509 return; 2510 2510 } 2511 #if defined(DEBUG) && !defined(IN_RING0) ///@todo RTLogPrintf is missing in R0.2511 #ifdef LOG_ENABLED 2512 2512 RTLogPrintf("cRefs=%d iFirstPresent=%d cPresent=%d\n", cRefs, pPage->iFirstPresent, pPage->cPresent); 2513 2513 for (unsigned i = 0; i < RT_ELEMENTS(pPT->a); i++) … … 2518 2518 } 2519 2519 #endif 2520 AssertFatalMsgFailed(("cRefs=%d iFirstPresent=%d cPresent=%d \n", cRefs, pPage->iFirstPresent, pPage->cPresent));2520 AssertFatalMsgFailed(("cRefs=%d iFirstPresent=%d cPresent=%d u64=%RX64\n", cRefs, pPage->iFirstPresent, pPage->cPresent, u64)); 2521 2521 break; 2522 2522 } … … 2535 2535 return; 2536 2536 } 2537 #if defined(DEBUG) && !defined(IN_RING0) ///@todo RTLogPrintf is missing in R0.2537 #ifdef LOG_ENABLED 2538 2538 RTLogPrintf("cRefs=%d iFirstPresent=%d cPresent=%d\n", cRefs, pPage->iFirstPresent, pPage->cPresent); 2539 2539 for (unsigned i = 0; i < RT_ELEMENTS(pPT->a); i++)
Note:
See TracChangeset
for help on using the changeset viewer.