- Timestamp:
- May 31, 2010 2:24:38 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/PDMInternal.h
r29521 r29911 810 810 /** @name PDM::fQueueFlushing 811 811 * @{ */ 812 /** Indicating that an queue insert has been performed. */ 813 #define PDM_QUEUE_FLUSH_FLAG_ACTIVE RT_BIT_32(PDM_QUEUE_FLUSH_FLAG_ACTIVE_BIT) 814 /** The bit number for PDM_QUEUE_FLUSH_FLAG_ACTIVE_BIT. */ 812 /** Used to make sure only one EMT will flush the queues. 813 * Set when an EMT is flushing queues, clear otherwise. */ 815 814 #define PDM_QUEUE_FLUSH_FLAG_ACTIVE_BIT 0 816 /** Indicating there are pending items.817 * This is make sure we don't miss inserts happening during flushing. The FF815 /** Indicating there are queues with items pending. 816 * This is make sure we don't miss inserts happening during flushing. The FF 818 817 * cannot be used for this since it has to be cleared immediately to prevent 819 818 * other EMTs from spinning. */ 820 #define PDM_QUEUE_FLUSH_FLAG_PENDING RT_BIT_32(PDM_QUEUE_FLUSH_FLAG_PENDING_BIT)821 /** The bit number for PDM_QUEUE_FLUSH_FLAG_PENDING. */822 819 #define PDM_QUEUE_FLUSH_FLAG_PENDING_BIT 1 823 820 /** }@ */
Note:
See TracChangeset
for help on using the changeset viewer.