Changeset 43335 in vbox
- Timestamp:
- Sep 14, 2012 5:35:00 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Storage/DevBusLogic.cpp
r43332 r43335 338 338 * to prevent the BIOs to access the device. */ 339 339 bool fISAEnabled; 340 /** Pending (delayed) interrupt. */341 uint8_t uPendingIntr;342 340 343 341 /** Number of mailboxes the guest set up. */ … … 380 378 uint32_t Alignment2; 381 379 382 /** Time when HBA reset was last initiated. */ //@todo: does this need to be saved?383 uint64_t u64ResetTime;384 385 380 /** Critical section protecting access to the interrupt status register. */ 386 381 PDMCRITSECT CritSectIntr; … … 422 417 volatile uint32_t cInMailboxesReady; 423 418 #endif 419 420 /** Time when HBA reset was last initiated. */ //@todo: does this need to be saved? 421 uint64_t u64ResetTime; 422 423 /** Pending (delayed) interrupt. */ 424 uint8_t uPendingIntr; 424 425 425 426 } BUSLOGIC, *PBUSLOGIC;
Note:
See TracChangeset
for help on using the changeset viewer.