Changeset 22925 in vbox for trunk/src/VBox/Devices/PC
- Timestamp:
- Sep 10, 2009 10:24:58 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/PC/DevAPIC.cpp
r22793 r22925 241 241 R3PTRTYPE(char *) pszDesc; 242 242 # ifdef VBOX_WITH_STATISTICS 243 # if HC_ARCH_BITS == 32 244 uint32_t u32Alignment0; 245 # endif 243 246 STAMCOUNTER StatTimerSetInitialCount; 244 247 STAMCOUNTER StatTimerSetInitialCountArm; … … 254 257 #endif /* VBOX */ 255 258 } APICState; 259 #ifdef VBOX 260 AssertCompileMemberAlignment(APICState, initial_count_load_time, 8); 261 # ifdef VBOX_WITH_STATISTICS 262 AssertCompileMemberAlignment(APICState, StatTimerSetInitialCount, 8); 263 # endif 264 #endif 256 265 257 266 struct IOAPICState { … … 320 329 /** The critical section - R3 Ptr. */ 321 330 RCPTRTYPE(PPDMCRITSECT) pCritSectRC; 322 RTRCPTR Padding0;323 331 324 332 /** APIC specification version in this virtual hardware configuration. */ … … 332 340 333 341 # ifdef VBOX_WITH_STATISTICS 342 uint32_t u32Alignment0; 334 343 STAMCOUNTER StatMMIOReadGC; 335 344 STAMCOUNTER StatMMIOReadHC; … … 339 348 # endif 340 349 } APICDeviceInfo; 350 # ifdef VBOX_WITH_STATISTICS 351 AssertCompileMemberAlignment(APICDeviceInfo, StatMMIOReadGC, 8); 352 # endif 341 353 #endif /* VBOX */ 342 354
Note:
See TracChangeset
for help on using the changeset viewer.