Changeset 12794 in vbox for trunk/include
- Timestamp:
- Sep 29, 2008 12:51:37 PM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 37139
- Location:
- trunk/include/VBox
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/vm.h
r12689 r12794 406 406 /** Ring-0 Host Context VM Pointer. */ 407 407 R0PTRTYPE(struct VM *) pVMR0; 408 /** Guest Context VM Pointer. */ 408 /** Raw-mode Context VM Pointer. 409 * @deprecated Use VM::pVMRC. */ 409 410 RCPTRTYPE(struct VM *) pVMGC; 411 /** Raw-mode Context VM Pointer. */ 412 RCPTRTYPE(struct VM *) pVMRC; 410 413 411 414 /** The GVM VM handle. Only the GVM should modify this field. */ … … 414 417 uint32_t cCPUs; 415 418 /** Reserved; alignment. */ 416 uint32_t u32Reserved[ 8];419 uint32_t u32Reserved[7]; 417 420 418 421 /** @name Public VMM Switcher APIs -
trunk/include/VBox/vm.mac
r12675 r12794 49 49 .enmVMState resd 1 50 50 .fForcedActions resd 1 51 .paVMPagesR3 RTR3PTR_RES 1 52 .pSession RTR0PTR_RES 1 53 .pUVM RTR3PTR_RES 1 54 .pVMR3 RTR3PTR_RES 1 55 .pVMR0 RTR0PTR_RES 1 56 .pVMGC RTGCPTR32_RES 1 51 .paVMPagesR3 RTR3PTR_RES 1 52 .pSession RTR0PTR_RES 1 53 .pUVM RTR3PTR_RES 1 54 .pVMR3 RTR3PTR_RES 1 55 .pVMR0 RTR0PTR_RES 1 56 .pVMGC RTRCPTR_RES 1 57 .pVMRC RTRCPTR_RES 1 57 58 .hSelf resd 1 58 59 .cCPUs resd 1 59 .u32Reserved resd 860 .u32Reserved resd 7 60 61 61 62 .pfnVMMGCGuestToHostAsmGuestCtx RTGCPTR32_RES 1
Note:
See TracChangeset
for help on using the changeset viewer.