Changeset 91016 in vbox for trunk/include/VBox/vmm
- Timestamp:
- Aug 31, 2021 1:23:53 AM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/vmm/pgm.h
r90992 r91016 645 645 #endif /* VBOX_STRICT */ 646 646 647 #if defined(IN_RC) || defined(VBOX_WITH_2X_4GB_ADDR_SPACE)648 VMMDECL(void) PGMRZDynMapStartAutoSet(PVMCPU pVCpu);649 VMMDECL(void) PGMRZDynMapReleaseAutoSet(PVMCPU pVCpu);650 VMMDECL(void) PGMRZDynMapFlushAutoSet(PVMCPU pVCpu);651 VMMDECL(uint32_t) PGMRZDynMapPushAutoSubset(PVMCPU pVCpu);652 VMMDECL(void) PGMRZDynMapPopAutoSubset(PVMCPU pVCpu, uint32_t iPrevSubset);653 #endif654 655 647 VMMDECL(int) PGMSetLargePageUsage(PVMCC pVM, bool fUseLargePages); 656 648 … … 662 654 */ 663 655 #define PGMIsUsingLargePages(pVM) ((pVM)->fUseLargePages) 664 665 666 #ifdef IN_RC667 /** @defgroup grp_pgm_gc The PGM Guest Context API668 * @{669 */670 VMMRCDECL(int) PGMRCDynMapInit(PVM pVM);671 /** @} */672 #endif /* IN_RC */673 656 674 657 … … 693 676 PCPUMCTXCORE pRegFrame, RTGCPHYS GCPhysFault, uint32_t uErr); 694 677 VMMR0_INT_DECL(int) PGMR0PoolGrow(PGVM pGVM); 695 696 # ifdef VBOX_WITH_2X_4GB_ADDR_SPACE697 VMMR0DECL(int) PGMR0DynMapInit(void);698 VMMR0DECL(void) PGMR0DynMapTerm(void);699 VMMR0DECL(int) PGMR0DynMapInitVM(PVMCC pVM);700 VMMR0DECL(void) PGMR0DynMapTermVM(PVMCC pVM);701 VMMR0DECL(int) PGMR0DynMapAssertIntegrity(void);702 VMMR0DECL(bool) PGMR0DynMapStartOrMigrateAutoSet(PVMCPUCC pVCpu);703 VMMR0DECL(void) PGMR0DynMapMigrateAutoSet(PVMCPUCC pVCpu);704 # endif705 678 /** @} */ 706 679 #endif /* IN_RING0 */
Note:
See TracChangeset
for help on using the changeset viewer.