Changeset 30438 in vbox for trunk/src/VBox
- Timestamp:
- Jun 24, 2010 2:12:44 PM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 63082
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/PGMPhys.cpp
r30344 r30438 3510 3510 */ 3511 3511 rc = pgmPhysPageMapByPageID(pVM, idPage, HCPhys, &pv); 3512 AssertLogRelMsg(RT_SUCCESS(rc), ("idPage=%#x HCPhysGCPhys=%RHp rc=%Rrc ", idPage, HCPhys, rc));3512 AssertLogRelMsg(RT_SUCCESS(rc), ("idPage=%#x HCPhysGCPhys=%RHp rc=%Rrc\n", idPage, HCPhys, rc)); 3513 3513 3514 3514 if (RT_SUCCESS(rc)) … … 3626 3626 void *pv; 3627 3627 rc = pgmPhysPageMapByPageID(pVM, pPage->idPage, pPage->HCPhysGCPhys, &pv); 3628 AssertLogRelMsgBreak(RT_SUCCESS(rc), ("idPage=%#x HCPhysGCPhys=%RHp rc=%Rrc ", pPage->idPage, pPage->HCPhysGCPhys, rc));3628 AssertLogRelMsgBreak(RT_SUCCESS(rc), ("idPage=%#x HCPhysGCPhys=%RHp rc=%Rrc\n", pPage->idPage, pPage->HCPhysGCPhys, rc)); 3629 3629 ASMMemZeroPage(pv); 3630 3630 iClear++;
Note:
See TracChangeset
for help on using the changeset viewer.