Changeset 2095 in vbox for trunk/src/VBox/VMM/VMMAll
- Timestamp:
- Apr 16, 2007 12:00:54 PM (18 years ago)
- svn:sync-xref-src-repo-rev:
- 20408
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/PGMAllPhys.cpp
r1946 r2095 495 495 PGMDECL(int) PGMPhysGCPtr2GCPhys(PVM pVM, RTGCPTR GCPtr, PRTGCPHYS pGCPhys) 496 496 { 497 int rc = PGM_GST_PFN(GetPage,pVM)(pVM, (RTGCUINTPTR)GCPtr, NULL, pGCPhys); 498 /** @todo real mode & protected mode? */ 499 return rc; 497 return PGM_GST_PFN(GetPage,pVM)(pVM, (RTGCUINTPTR)GCPtr, NULL, pGCPhys); 500 498 } 501 499 … … 517 515 if (VBOX_SUCCESS(rc)) 518 516 rc = PGMPhysGCPhys2HCPhys(pVM, GCPhys | ((RTGCUINTPTR)GCPtr & PAGE_OFFSET_MASK), pHCPhys); 519 /** @todo real mode & protected mode? */520 517 return rc; 521 518 } … … 538 535 if (VBOX_SUCCESS(rc)) 539 536 rc = PGMPhysGCPhys2HCPtr(pVM, GCPhys | ((RTGCUINTPTR)GCPtr & PAGE_OFFSET_MASK), 1 /* we always stay within one page */, pHCPtr); 540 /** @todo real mode & protected mode? */541 537 return rc; 542 538 }
Note:
See TracChangeset
for help on using the changeset viewer.