Changeset 56715 in vbox for trunk/src/VBox/Devices
- Timestamp:
- Jun 30, 2015 11:48:17 PM (10 years ago)
- Location:
- trunk/src/VBox/Devices
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Audio/DevIchAc97.cpp
r56648 r56715 269 269 uint64_t uTicks; 270 270 #ifdef VBOX_WITH_STATISTICS 271 # if HC_ARCH_BITS == 32 272 uint32_t u32Alignment0; 273 # endif 271 274 STAMPROFILE StatTimer; 272 275 STAMCOUNTER StatBytesRead; … … 300 303 /** Pointer to the AC97 device state. */ 301 304 typedef AC97STATE *PAC97STATE; 305 306 AssertCompileMemberAlignment(AC97STATE, StatTimer, 8); 302 307 303 308 #ifndef VBOX_DEVICE_STRUCT_TESTCASE -
trunk/src/VBox/Devices/Storage/DevAHCI.cpp
r56676 r56715 575 575 R3PTRTYPE(PRTLISTANCHOR) pListReqsFree; 576 576 577 /** Align to a multiple of 8. */ 578 #if HC_ARCH_BITS == 32 579 uint32_t u32Alignment6; 580 #endif 581 577 582 } AHCIPort; 578 583 /** Pointer to the state of an AHCI port. */ 579 584 typedef AHCIPort *PAHCIPort; 585 586 AssertCompileMemberAlignment(AHCIPort, StatDMA, 8); 587 AssertCompileSizeAlignment(AHCIPort, 8); 580 588 581 589 /** … … 723 731 /** Pointer to the state of an AHCI device. */ 724 732 typedef AHCI *PAHCI; 733 734 AssertCompileMemberAlignment(AHCI, ahciPort[0], 8); 725 735 726 736 /** -
trunk/src/VBox/Devices/Storage/DevATA.cpp
r56579 r56715 441 441 /** Magic delay before triggering interrupts in DMA mode. */ 442 442 uint32_t DelayIRQMillies; 443 /** The event semaphore the thread is waiting on during suspended I/O. */ 444 RTSEMEVENT SuspendIOSem; 443 445 /** The lock protecting the request queue. */ 444 446 PDMCRITSECT AsyncIORequestLock; 445 /** The event semaphore the thread is waiting on during suspended I/O. */446 RTSEMEVENT SuspendIOSem;447 447 #if 0 /*HC_ARCH_BITS == 32*/ 448 448 uint32_t Alignment0; … … 464 464 AssertCompileMemberAlignment(ATACONTROLLER, u64ResetTime, 8); 465 465 AssertCompileMemberAlignment(ATACONTROLLER, StatAsyncOps, 8); 466 AssertCompileMemberAlignment(ATACONTROLLER, AsyncIORequestLock, 8); 467 AssertCompileSizeAlignment(ATACONTROLLER, 8); 466 468 467 469 typedef enum CHIPSET
Note:
See TracChangeset
for help on using the changeset viewer.