Changeset 30597 in vbox
- Timestamp:
- Jul 5, 2010 9:09:01 AM (15 years ago)
- Location:
- trunk/src/VBox/Devices
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Storage/DevBusLogic.cpp
r30596 r30597 276 276 PPDMDEVINSRC pDevInsRC; 277 277 278 /* Whether R0 is enabled. */278 /** Whether R0 is enabled. */ 279 279 bool fR0Enabled; 280 /** Whether GC is enabled. */280 /** Whether RC is enabled. */ 281 281 bool fGCEnabled; 282 282 … … 378 378 /** The base interface. 379 379 * @todo use PDMDEVINS::IBase */ 380 PDMIBASE IBase;380 PDMIBASE IBase; 381 381 /** Status Port - Leds interface. */ 382 PDMILEDPORTS ILeds;382 PDMILEDPORTS ILeds; 383 383 /** Partner of ILeds. */ 384 R3PTRTYPE(PPDMILEDCONNECTORS) pLedsConnector;384 R3PTRTYPE(PPDMILEDCONNECTORS) pLedsConnector; 385 385 386 386 #if HC_ARCH_BITS == 64 387 uint32_t Alignment3;387 uint32_t Alignment3; 388 388 #endif 389 389 390 390 /** Indicates that PDMDevHlpAsyncNotificationCompleted should be called when 391 391 * a port is entering the idle state. */ 392 bool volatile fSignalIdle;392 bool volatile fSignalIdle; 393 393 394 394 } BUSLOGIC, *PBUSLOGIC; -
trunk/src/VBox/Devices/testcase/tstDeviceStructSize.cpp
r30222 r30597 263 263 CHECK_MEMBER_ALIGNMENT(ATACONTROLLER, lock, 8); 264 264 CHECK_MEMBER_ALIGNMENT(ATACONTROLLER, StatAsyncOps, 8); 265 CHECK_MEMBER_ALIGNMENT(BUSLOGIC, CritSectIntr, 8); 265 266 CHECK_MEMBER_ALIGNMENT(DEVPARALLELSTATE, CritSect, 8); 266 267 #ifdef VBOX_WITH_STATISTICS
Note:
See TracChangeset
for help on using the changeset viewer.