Changeset 40920 in vbox for trunk/src/VBox/VMM/include/PDMInternal.h
- Timestamp:
- Apr 14, 2012 11:51:38 AM (13 years ago)
- svn:sync-xref-src-repo-rev:
- 77471
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/include/PDMInternal.h
r40907 r40920 1015 1015 * See PDM_QUEUE_FLUSH_FLAG_ACTIVE and PDM_QUEUE_FLUSH_FLAG_PENDING. */ 1016 1016 uint32_t volatile fQueueFlushing; 1017 1017 1018 /** The current IRQ tag (tracing purposes). */ 1018 uint32_t uIrqTag; 1019 uint32_t volatile uIrqTag; 1020 1021 /** The tracing ID of the next device instance. 1022 * 1023 * @remarks We keep the device tracing ID seperate from the rest as these are 1024 * then more likely to end up with the same ID from one run to 1025 * another, making analysis somewhat easier. Drivers and USB devices 1026 * are more volatile and can be changed at runtime, thus these are much 1027 * less likely to remain stable, so just heap them all together. */ 1028 uint32_t idTracingDev; 1029 /** The tracing ID of the next driver instance, USB device instance or other 1030 * PDM entity requiring an ID. */ 1031 uint32_t idTracingOther; 1019 1032 1020 1033 /** @name VMM device heap
Note:
See TracChangeset
for help on using the changeset viewer.