Changeset 44502 in vbox for trunk/include/VBox
- Timestamp:
- Jan 31, 2013 8:11:08 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/vmm/pdmqueue.h
r39136 r44502 66 66 * @param pDevIns The device instance. 67 67 * @param pItem The item to consume. Upon return this item will be freed. 68 * @remarks The device critical section will NOT be entered before calling the 69 * back. No locks will be held, but for now it's safe to assume that 70 * only one EMT will do queue callbacks at any one time. 68 71 */ 69 72 typedef DECLCALLBACK(bool) FNPDMQUEUEDEV(PPDMDEVINS pDevIns, PPDMQUEUEITEMCORE pItem); … … 78 81 * @param pDevIns The USB device instance. 79 82 * @param pItem The item to consume. Upon return this item will be freed. 83 * @remarks No locks will be held, but for now it's safe to assume that only one 84 * EMT will do queue callbacks at any one time. 80 85 */ 81 86 typedef DECLCALLBACK(bool) FNPDMQUEUEUSB(PPDMUSBINS pUsbIns, PPDMQUEUEITEMCORE pItem); … … 90 95 * @param pDrvIns The driver instance. 91 96 * @param pItem The item to consume. Upon return this item will be freed. 97 * @remarks No locks will be held, but for now it's safe to assume that only one 98 * EMT will do queue callbacks at any one time. 92 99 */ 93 100 typedef DECLCALLBACK(bool) FNPDMQUEUEDRV(PPDMDRVINS pDrvIns, PPDMQUEUEITEMCORE pItem); … … 102 109 * @param pVM The VM handle. 103 110 * @param pItem The item to consume. Upon return this item will be freed. 111 * @remarks No locks will be held, but for now it's safe to assume that only one 112 * EMT will do queue callbacks at any one time. 104 113 */ 105 114 typedef DECLCALLBACK(bool) FNPDMQUEUEINT(PVM pVM, PPDMQUEUEITEMCORE pItem); … … 114 123 * @param pvUser User argument. 115 124 * @param pItem The item to consume. Upon return this item will be freed. 125 * @remarks No locks will be held, but for now it's safe to assume that only one 126 * EMT will do queue callbacks at any one time. 116 127 */ 117 128 typedef DECLCALLBACK(bool) FNPDMQUEUEEXT(void *pvUser, PPDMQUEUEITEMCORE pItem);
Note:
See TracChangeset
for help on using the changeset viewer.