Changeset 31058 in vbox
- Timestamp:
- Jul 23, 2010 1:06:52 PM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 63988
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/USB/VUSBInternal.h
r30968 r31058 28 28 #include <VBox/vusb.h> 29 29 #include <VBox/stam.h> 30 #include <iprt/assert.h> 30 31 31 32 RT_C_DECLS_BEGIN … … 353 354 /** Chain of devices attached to this hub. */ 354 355 PVUSBDEV pDevices; 356 #if HC_ARCH_BITS == 32 357 uint32_t Alignment0; 358 #endif 355 359 /** Availability Bitmap. */ 356 360 VUSBPORTBITMAP Bitmap; … … 366 370 #ifdef VBOX_WITH_STATISTICS 367 371 #if HC_ARCH_BITS == 32 368 uint32_t Alignment 0; /**< Counters must be 64-bit aligned. */372 uint32_t Alignment1; /**< Counters must be 64-bit aligned. */ 369 373 #endif 370 374 VUSBROOTHUBTYPESTATS Total; … … 393 397 #endif 394 398 } VUSBROOTHUB; 399 AssertCompileMemberAlignment(VUSBROOTHUB, IRhConnector, 8); 400 AssertCompileMemberAlignment(VUSBROOTHUB, Bitmap, 8); 401 AssertCompileMemberAlignment(VUSBROOTHUB, CritSect, 8); 402 #ifdef VBOX_WITH_STATISTICS 403 AssertCompileMemberAlignment(VUSBROOTHUB, Total, 8); 404 #endif 395 405 396 406 /** Converts a pointer to VUSBROOTHUB::IRhConnector to a PVUSBROOTHUB. */
Note:
See TracChangeset
for help on using the changeset viewer.