Changeset 73471 in vbox for trunk/include/VBox
- Timestamp:
- Aug 3, 2018 12:11:07 PM (6 years ago)
- Location:
- trunk/include/VBox/vmm
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/vmm/dbgf.h
r73460 r73471 125 125 VMMR3DECL(PDBGFADDRESS) DBGFR3AddrFromFlat(PUVM pUVM, PDBGFADDRESS pAddress, RTGCUINTPTR FlatPtr); 126 126 VMMR3DECL(PDBGFADDRESS) DBGFR3AddrFromPhys(PUVM pUVM, PDBGFADDRESS pAddress, RTGCPHYS PhysAddr); 127 VMMR3_INT_DECL(PDBGFADDRESS) DBGFR3AddrFromHostR0(PDBGFADDRESS pAddress, RTR0UINTPTR R0Ptr); 127 128 VMMR3DECL(bool) DBGFR3AddrIsValid(PUVM pUVM, PCDBGFADDRESS pAddress); 128 129 VMMR3DECL(int) DBGFR3AddrToPhys(PUVM pUVM, VMCPUID idCpu, PCDBGFADDRESS pAddress, PRTGCPHYS pGCPhys); -
trunk/include/VBox/vmm/vm.h
r73351 r73471 196 196 struct VMMCPU s; 197 197 #endif 198 uint8_t padding[7 04]; /* multiple of 64 */198 uint8_t padding[768]; /* multiple of 64 */ 199 199 } vmm; 200 200 … … 258 258 259 259 /** Align the following members on page boundary. */ 260 uint8_t abAlignment2[2 936];260 uint8_t abAlignment2[2872]; 261 261 262 262 /** PGM part. */ -
trunk/include/VBox/vmm/vm.mac
r73351 r73471 66 66 .trpm resb 128 67 67 .tm resb 384 68 .vmm resb 7 0468 .vmm resb 768 69 69 .pdm resb 256 70 70 .iom resb 512 -
trunk/include/VBox/vmm/vmm.h
r72546 r73471 579 579 VMMR3_INT_DECL(int) VMMR3EmtRendezvousFF(PVM pVM, PVMCPU pVCpu); 580 580 VMMR3_INT_DECL(int) VMMR3ReadR0Stack(PVM pVM, VMCPUID idCpu, RTHCUINTPTR R0Addr, void *pvBuf, size_t cbRead); 581 VMMR3_INT_DECL(void) VMMR3InitR0StackUnwindState(PUVM pUVM, VMCPUID idCpu, struct RTDBGUNWINDSTATE *pState); 581 582 /** @} */ 582 583 #endif /* IN_RING3 */
Note:
See TracChangeset
for help on using the changeset viewer.