Changeset 104767 in vbox for trunk/include
- Timestamp:
- May 23, 2024 12:03:04 PM (6 months ago)
- Location:
- trunk/include/VBox/vmm
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/vmm/iom.h
r100144 r104767 504 504 uint32_t iPciRegion, PFNIOMMMIONEWWRITE pfnWrite, PFNIOMMMIONEWREAD pfnRead, 505 505 PFNIOMMMIONEWFILL pfnFill, void *pvUser, const char *pszDesc, PIOMMMIOHANDLE phRegion); 506 VMMR3_INT_DECL(int) IOMR3MmioMap(PVM pVM, P PDMDEVINS pDevIns, IOMMMIOHANDLE hRegion, RTGCPHYS GCPhys);507 VMMR3_INT_DECL(int) IOMR3MmioUnmap(PVM pVM, P PDMDEVINS pDevIns, IOMMMIOHANDLE hRegion);506 VMMR3_INT_DECL(int) IOMR3MmioMap(PVM pVM, PVMCPU pVCpu, PPDMDEVINS pDevIns, IOMMMIOHANDLE hRegion, RTGCPHYS GCPhys); 507 VMMR3_INT_DECL(int) IOMR3MmioUnmap(PVM pVM, PVMCPU pVCpu, PPDMDEVINS pDevIns, IOMMMIOHANDLE hRegion); 508 508 VMMR3_INT_DECL(int) IOMR3MmioReduce(PVM pVM, PPDMDEVINS pDevIns, IOMMMIOHANDLE hRegion, RTGCPHYS cbRegion); 509 509 VMMR3_INT_DECL(int) IOMR3MmioValidateHandle(PVM pVM, PPDMDEVINS pDevIns, IOMMMIOHANDLE hRegion); -
trunk/include/VBox/vmm/pgm.h
r103295 r104767 1023 1023 VMMR3DECL(int) PGMR3QueryGlobalMemoryStats(PUVM pUVM, uint64_t *pcbAllocMem, uint64_t *pcbFreeMem, uint64_t *pcbBallonedMem, uint64_t *pcbSharedMem); 1024 1024 1025 VMMR3 DECL(int) PGMR3PhysMMIORegister(PVM pVM, RTGCPHYS GCPhys, RTGCPHYS cb, PGMPHYSHANDLERTYPE hType,1025 VMMR3_INT_DECL(int) PGMR3PhysMmioRegister(PVM pVM, PVMCPU pVCpu, RTGCPHYS GCPhys, RTGCPHYS cb, PGMPHYSHANDLERTYPE hType, 1026 1026 uint64_t uUser, const char *pszDesc); 1027 VMMR3 DECL(int) PGMR3PhysMMIODeregister(PVM pVM, RTGCPHYS GCPhys, RTGCPHYS cb);1027 VMMR3_INT_DECL(int) PGMR3PhysMmioDeregister(PVM pVM, PVMCPU pVCpu, RTGCPHYS GCPhys, RTGCPHYS cb); 1028 1028 1029 1029 /** @name PGMPHYS_MMIO2_FLAGS_XXX - MMIO2 registration flags.
Note:
See TracChangeset
for help on using the changeset viewer.