Changeset 1573 in vbox for trunk/src/VBox/VMM/PGMMap.cpp
- Timestamp:
- Mar 20, 2007 9:34:49 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/PGMMap.cpp
r914 r1573 101 101 AssertMsgFailed(("Address is already in use by %s. req %#x-%#x take %#x-%#x\n", 102 102 pCur->pszDesc, GCPtr, GCPtrLast, pCur->GCPtr, pCur->GCPtrLast)); 103 LogRel(("VERR_PGM_MAPPING_CONFLICT: Address is already in use by %s. req %#x-%#x take %#x-%#x\n",pCur->pszDesc, GCPtr, GCPtrLast, pCur->GCPtr, pCur->GCPtrLast)); 103 104 return VERR_PGM_MAPPING_CONFLICT; 104 105 } … … 121 122 { 122 123 AssertMsgFailed(("Address %#x is already in use by an intermediate mapping.\n", GCPtr + (i << PAGE_SHIFT))); 124 LogRel(("VERR_PGM_MAPPING_CONFLICT: Address %#x is already in use by an intermediate mapping.\n", GCPtr + (i << PAGE_SHIFT))); 123 125 return VERR_PGM_MAPPING_CONFLICT; 124 126 }
Note:
See TracChangeset
for help on using the changeset viewer.