Changeset 45097 in vbox for trunk/include/VBox/vmm
- Timestamp:
- Mar 19, 2013 7:05:53 PM (12 years ago)
- Location:
- trunk/include/VBox/vmm
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/vmm/vm.h
r44195 r45097 190 190 struct VMMCPU s; 191 191 #endif 192 uint8_t padding[ 640]; /* multiple of 64 */192 uint8_t padding[704]; /* multiple of 64 */ 193 193 } vmm; 194 194 … … 222 222 223 223 /** Align the following members on page boundary. */ 224 uint8_t abAlignment2[1024 - 320 - 128 ];224 uint8_t abAlignment2[1024 - 320 - 128 - 64]; 225 225 226 226 /** PGM part. */ -
trunk/include/VBox/vmm/vm.mac
r43387 r45097 138 138 .trpm resb 128 139 139 .tm resb 384 140 .vmm resb 640140 .vmm resb 704 141 141 .pdm resb 128 142 142 .iom resb 512 -
trunk/include/VBox/vmm/vmm.h
r45091 r45097 515 515 VMMRZDECL(void) VMMRZCallRing3Enable(PVMCPU pVCpu); 516 516 VMMRZDECL(bool) VMMRZCallRing3IsEnabled(PVMCPU pVCpu); 517 VMMRZDECL(int) VMMRZCallRing3SetNotification(PVMCPU pVCpu, PFNVMMR0CALLRING3NOTIFICATION pfnCallback, void *pvUser);517 VMMRZDECL(int) VMMRZCallRing3SetNotification(PVMCPU pVCpu, R0PTRTYPE(PFNVMMR0CALLRING3NOTIFICATION) pfnCallback, RTR0PTR pvUser); 518 518 VMMRZDECL(void) VMMRZCallRing3RemoveNotification(PVMCPU pVCpu); 519 519 /** @} */
Note:
See TracChangeset
for help on using the changeset viewer.