Changeset 7053 in vbox for trunk/src/VBox
- Timestamp:
- Feb 20, 2008 4:26:06 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/IOMInternal.h
r5999 r7053 43 43 /** Avl node core with GCPhys as Key and GCPhys + cbSize - 1 as KeyLast. */ 44 44 AVLROGCPHYSNODECORE Core; 45 #if HC_ARCH_BITS == 64 && GC_ARCH_BITS == 32 && !defined(RT_OS_WINDOWS)46 uint32_t u32Alignment; /**< The sizeof(Core) differs. */47 #endif48 45 /** Start physical address. */ 49 46 RTGCPHYS GCPhys; 50 47 /** Size of the range. */ 51 48 RTUINT cbSize; 49 /** Alignment. */ 50 uint32_t u32Alignment; 52 51 /** Pointer to user argument. */ 53 52 RTR3PTR pvUser; … … 73 72 /** Avl node core with GCPhys as Key and GCPhys + cbSize - 1 as KeyLast. */ 74 73 AVLROGCPHYSNODECORE Core; 75 #if HC_ARCH_BITS == 64 && GC_ARCH_BITS == 32 && !defined(RT_OS_WINDOWS)76 uint32_t u32Alignment; /**< The sizeof(Core) differs. */77 #endif78 74 /** Start physical address. */ 79 75 RTGCPHYS GCPhys; 80 76 /** Size of the range. */ 81 RTUINT cbSize; 77 uint32_t cbSize; 78 /** Alignment. */ 79 uint32_t u32Alignment; 82 80 /** Pointer to user argument. */ 83 81 RTR0PTR pvUser; … … 103 101 /** Avl node core with GCPhys as Key and GCPhys + cbSize - 1 as KeyLast. */ 104 102 AVLROGCPHYSNODECORE Core; 105 #if HC_ARCH_BITS == 64 && GC_ARCH_BITS == 32 && !defined(RT_OS_WINDOWS)106 uint32_t u32Alignment; /**< The sizeof(Core) differs. */107 #endif108 103 /** Start physical address. */ 109 104 RTGCPHYS GCPhys; … … 120 115 /** Pointer to fill (memset) callback function. */ 121 116 GCPTRTYPE(PFNIOMMMIOFILL) pfnFillCallback; 122 #if HC_ARCH_BITS == 64 && GC_ARCH_BITS == 32123 RTGCPTR GCPtrAlignment; /**< pszDesc is 8 byte aligned. */124 #endif125 117 /** Description / Name. For easing debugging. */ 126 118 R3PTRTYPE(const char *) pszDesc; … … 266 258 #if HC_ARCH_BITS == 64 && GC_ARCH_BITS == 32 267 259 RTGCPTR GCPtrAlignment; /**< pszDesc is 8 byte aligned. */ 268 #endif 260 #endif 269 261 /** Description / Name. For easing debugging. */ 270 262 R3PTRTYPE(const char *) pszDesc;
Note:
See TracChangeset
for help on using the changeset viewer.