Changeset 14600 in vbox for trunk/src/VBox/VMM
- Timestamp:
- Nov 25, 2008 8:51:37 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/MMAll.cpp
r14599 r14600 255 255 if (pLookup->u.Locked.pvR0) 256 256 return (RTR0PTR)((RTR0UINTPTR)pLookup->u.Locked.pvR0 + off); 257 #ifdef VBOX_WITH_2X_4GB_ADDR_SPACE /** @todo make NIL_RTR0PTR default! */ 257 AssertMsgFailed(("%s\n", R3STRING(pLookup->pszDesc))); 258 258 return NIL_RTR0PTR; 259 #else260 return (RTR0PTR)((RTR3UINTPTR)pLookup->u.Locked.pvR3 + off);261 #endif262 259 263 260 case MMLOOKUPHYPERTYPE_HCPHYS: 264 261 if (pLookup->u.HCPhys.pvR0) 265 262 return (RTR0PTR)((RTR0UINTPTR)pLookup->u.HCPhys.pvR0 + off); 263 AssertMsgFailed(("%s\n", R3STRING(pLookup->pszDesc))); 266 264 return NIL_RTR0PTR; 265 267 266 default: 268 267 AssertMsgFailed(("enmType=%d\n", pLookup->enmType));
Note:
See TracChangeset
for help on using the changeset viewer.