Changeset 29411 in vbox
- Timestamp:
- May 12, 2010 12:18:51 PM (15 years ago)
- Location:
- trunk/src/VBox/VMM
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/PGMSharedPage.cpp
r29401 r29411 85 85 uint64_t fFlags; 86 86 87 rc = PGMGstGetPage(pVCpu, GCRegion, & GCPhys, &fFlags);87 rc = PGMGstGetPage(pVCpu, GCRegion, &fFlags, &GCPhys); 88 88 if ( rc == VINF_SUCCESS 89 89 && !(fFlags & X86_PTE_RW)) -
trunk/src/VBox/VMM/VMMR0/PGMR0.cpp
r29408 r29411 359 359 uint64_t fFlags; 360 360 361 rc = PGMGstGetPage(pVCpu, GCRegion, & GCPhys, &fFlags);361 rc = PGMGstGetPage(pVCpu, GCRegion, &fFlags, &GCPhys); 362 362 if ( rc == VINF_SUCCESS 363 363 && !(fFlags & X86_PTE_RW)) /* important as we make assumptions about this below! */
Note:
See TracChangeset
for help on using the changeset viewer.