Changeset 38839 in vbox for trunk/src/VBox/VMM
- Timestamp:
- Sep 23, 2011 11:30:22 AM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/include/VMMInternal.h
r38835 r38839 397 397 /** Offset to the VMCPU structure. 398 398 * See VMM2VMCPU(). */ 399 RTINToffVMCPU;399 int32_t offVMCPU; 400 400 401 401 /** The last RC/R0 return code. */ … … 425 425 * attempts at recursive rendezvous. */ 426 426 bool volatile fInRendezvous; 427 bool afPadding[ 7];427 bool afPadding[HC_ARCH_BITS == 32 ? 7 : 3]; 428 428 /** @} */ 429 429 … … 437 437 /** The result of the last operation. */ 438 438 int32_t rcCallRing3; 439 #if HC_ARCH_BITS == 64440 uint32_t padding;441 #endif442 439 /** The argument to the operation. */ 443 440 uint64_t u64CallRing3Arg;
Note:
See TracChangeset
for help on using the changeset viewer.