Changeset 26273 in vbox
- Timestamp:
- Feb 5, 2010 4:24:36 AM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 57332
- Location:
- trunk/src/VBox/VMM/VMMAll
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/EMAll.cpp
r26272 r26273 1193 1193 1194 1194 #ifdef IN_RC 1195 pvParam1 = (void *) GCPtrPar1;1195 pvParam1 = (void *)(uintptr_t)GCPtrPar1; 1196 1196 #else 1197 1197 PGMPAGEMAPLOCK Lock; -
trunk/src/VBox/VMM/VMMAll/MMAll.cpp
r26228 r26273 290 290 DECLINLINE(RTRCPTR) mmHyperLookupCalcRC(PVM pVM, PMMLOOKUPHYPER pLookup, uint32_t off) 291 291 { 292 return (RTRCPTR)((RT GCUINTPTR)pVM->mm.s.pvHyperAreaGC + pLookup->off + off);292 return (RTRCPTR)((RTRCUINTPTR)pVM->mm.s.pvHyperAreaGC + pLookup->off + off); 293 293 } 294 294
Note:
See TracChangeset
for help on using the changeset viewer.