- Timestamp:
- Oct 7, 2008 1:24:42 PM (16 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/avl.h
r9387 r13047 519 519 /** Height of this tree: max(height(left), height(right)) + 1 */ 520 520 unsigned char uchHeight; 521 unsigned char padding[GC_ARCH_BITS == 64 ? 7 : 3];521 unsigned char padding[GC_ARCH_BITS == 64 ? 7 : 7]; 522 522 } AVLROGCPTRNODECORE, *PAVLROGCPTRNODECORE; 523 523 … … 633 633 #if HC_ARCH_BITS == 64 || GC_ARCH_BITS == 64 634 634 unsigned char Padding[7]; /**< Alignment padding. */ 635 #endif 635 #endif 636 636 } AVLOHCPHYSNODECORE, *PAVLOHCPHYSNODECORE; 637 637 -
trunk/src/VBox/VMM/PGMInternal.h
r13046 r13047 444 444 /** Core node for the tree based on virtual ranges. */ 445 445 AVLROGCPTRNODECORE Core; 446 #if GC_ARCH_BITS == 32 447 /** Alignment padding. */448 uint32_t u32Padding;449 #endif 446 /** Size of the range (in bytes). */ 447 RTGCUINTPTR cb; 448 /** Number of cache pages. */ 449 uint32_t cPages; 450 450 /** Access type. */ 451 451 PGMVIRTHANDLERTYPE enmType; 452 /** Number of cache pages. */453 uint32_t cPages;454 455 /** Size of the range (in bytes). */456 RTGCUINTPTR cb;457 452 /** Pointer to the RC callback function. */ 458 453 RCPTRTYPE(PFNPGMRCVIRTHANDLER) pfnHandlerRC; 459 #if GC_ARCH_BITS == 64460 RTRCPTR padding 1;454 #if HC_ARCH_BITS == 64 455 RTRCPTR padding; 461 456 #endif 462 457 /** Pointer to the R3 callback function for invalidation. */
Note:
See TracChangeset
for help on using the changeset viewer.