Changeset 25060 in vbox
- Timestamp:
- Nov 27, 2009 6:19:10 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/alloc/heapoffset.cpp
r25059 r25060 74 74 uint32_t fFlags; 75 75 } RTHEAPOFFSETBLOCK; 76 AssertCompileSize Alignment(RTHEAPOFFSETBLOCK, 16);76 AssertCompileSize(RTHEAPOFFSETBLOCK, 16); 77 77 78 78 /** The block is free if this flag is set. When cleared it's allocated. */ … … 134 134 uint32_t Alignment; 135 135 } RTHEAPOFFSETFREE; 136 AssertCompileSize Alignment(RTHEAPOFFSETFREE,16);136 AssertCompileSize(RTHEAPOFFSETFREE, 16+16); 137 137 138 138 … … 154 154 /** Free tail pointer. */ 155 155 uint32_t /*PRTHEAPOFFSETFREE*/ offFreeTail; 156 /** Make the size of this structure is a multiple of 32. */156 /** Make the size of this structure 32 bytes. */ 157 157 uint32_t au32Alignment[3]; 158 158 } RTHEAPOFFSETINTERNAL; 159 AssertCompileSize Alignment(RTHEAPOFFSETINTERNAL, 32);159 AssertCompileSize(RTHEAPOFFSETINTERNAL, 32); 160 160 161 161
Note:
See TracChangeset
for help on using the changeset viewer.