Changeset 19453 in vbox
- Timestamp:
- May 6, 2009 6:40:37 PM (16 years ago)
- Location:
- trunk/src/VBox/VMM
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMInternal.h
r19438 r19453 248 248 /** The EMT yield timer interval (milliseconds). */ 249 249 uint32_t cYieldEveryMillies; 250 #if HC_ARCH_BITS == 32251 RTR3PTR pR3Padding1; /**< Alignment padding. */252 #endif253 250 /** The timestamp of the previous yield. (nano) */ 254 251 uint64_t u64LastYield; … … 348 345 /** The result of the last operation. */ 349 346 int32_t rcCallHost; 347 #if HC_ARCH_BITS == 32 348 uint32_t padding; 349 #endif 350 350 /** The argument to the operation. */ 351 351 uint64_t u64CallHostArg; -
trunk/src/VBox/VMM/testcase/tstVMStructSize.cpp
r19434 r19453 196 196 CHECK_MEMBER_ALIGNMENT(VM, cpum.s.GuestEntry, 64); 197 197 198 CHECK_MEMBER_ALIGNMENT(VMCPU, vmm.s.u64CallHostArg, 8); 198 199 CHECK_MEMBER_ALIGNMENT(VMCPU, vmm.s.CallHostR0JmpBuf, 8); 200 CHECK_MEMBER_ALIGNMENT(VM, vmm.s.u64LastYield, 8); 199 201 CHECK_MEMBER_ALIGNMENT(VM, vmm.s.StatRunRC, 8); 200 202 CHECK_MEMBER_ALIGNMENT(VM, StatTotalQemuToGC, 8);
Note:
See TracChangeset
for help on using the changeset viewer.