Changeset 13898 in vbox for trunk/include/VBox
- Timestamp:
- Nov 6, 2008 9:44:29 AM (16 years ago)
- Location:
- trunk/include/VBox
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/vm.h
r13879 r13898 133 133 struct HWACCMCPU s; 134 134 #endif 135 char padding[ 512]; /* multiple of 32 */135 char padding[1024]; /* multiple of 32 */ 136 136 } hwaccm; 137 137 … … 395 395 #endif 396 396 397 398 /** @def VM_GET_VMCPUID399 * Returns the VMCPU id of the current EMT.400 * @todo r=bird: See VMMGetCpuId().401 */402 #ifdef IN_RC403 # define VM_GET_VMCPUID(pVM) 0404 #elif defined(IN_RING0)405 # define VM_GET_VMCPUID(pVM) HWACCMGetVMCPUId(pVM)406 #else407 # define VM_GET_VMCPUID(pVM) VMR3GetVMCPUId(pVM)408 #endif409 397 410 398 /** … … 620 608 struct HWACCM s; 621 609 #endif 622 char padding[ 1536]; /* multiple of 32 */610 char padding[512]; /* multiple of 32 */ 623 611 } hwaccm; 624 612 -
trunk/include/VBox/vmm.h
r13871 r13898 112 112 RTRCPTR VMMGetStackRC(PVM pVM); 113 113 VMCPUID VMMGetCpuId(PVM pVM); 114 PVMCPU VMMGetCpu(PVM pVM); 114 115 VMMDECL(uint32_t) VMMGetSvnRev(void); 115 116
Note:
See TracChangeset
for help on using the changeset viewer.