- Timestamp:
- Jul 3, 2014 6:16:52 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR3/PGMPhys.cpp
r51854 r51855 2841 2841 AssertLogRelRCReturn(rc, rc); /* We're done for if this goes wrong. */ 2842 2842 2843 RTHCPHYS const HCPhys 2844 uint32_t const uPageId= PGM_PAGE_GET_PAGEID(pPageSrc);2845 PGM_PAGE_SET_PAGEID(pVM, pPageDst, uPageId);2843 RTHCPHYS const HCPhys = PGM_PAGE_GET_HCPHYS(pPageSrc); 2844 uint32_t const idPage = PGM_PAGE_GET_PAGEID(pPageSrc); 2845 PGM_PAGE_SET_PAGEID(pVM, pPageDst, idPage); 2846 2846 PGM_PAGE_SET_HCPHYS(pVM, pPageDst, HCPhys); 2847 2847 PGM_PAGE_SET_TYPE(pVM, pPageDst, PGMPAGETYPE_MMIO2);
Note:
See TracChangeset
for help on using the changeset viewer.