Changeset 72265 in vbox
- Timestamp:
- May 20, 2018 1:08:29 PM (7 years ago)
- svn:sync-xref-src-repo-rev:
- 122713
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/vmm/pgm.h
r71081 r72265 439 439 VMMDECL(PGMMODE) PGMGetHostMode(PVM pVM); 440 440 VMMDECL(const char *) PGMGetModeName(PGMMODE enmMode); 441 VMM_INT_DECL(RTGCPHYS) PGMGetGuestCR3Phys(PVMCPU pVCpu); 441 442 VMM_INT_DECL(void) PGMNotifyNxeChanged(PVMCPU pVCpu, bool fNxe); 442 443 VMMDECL(bool) PGMHasDirtyPages(PVM pVM); -
trunk/src/VBox/VMM/VMMAll/PGMAll.cpp
r70948 r72265 2421 2421 2422 2422 2423 /** 2424 * Gets the physical address represented in the guest CR3 as PGM sees it. 2425 * 2426 * This is mainly for logging and debugging. 2427 * 2428 * @returns PGM's guest CR3 value. 2429 * @param pVCpu The cross context virtual CPU structure. 2430 */ 2431 VMM_INT_DECL(RTGCPHYS) PGMGetGuestCR3Phys(PVMCPU pVCpu) 2432 { 2433 return pVCpu->pgm.s.GCPhysCR3; 2434 } 2435 2436 2423 2437 2424 2438 /**
Note:
See TracChangeset
for help on using the changeset viewer.