Changeset 93612 in vbox for trunk/src/VBox
- Timestamp:
- Feb 5, 2022 7:17:17 PM (3 years ago)
- Location:
- trunk/src/VBox/VMM
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/PDMAllQueue.cpp
r93609 r93612 191 191 * data have been filled in. 192 192 * 193 * @returns VBox status code.193 * @returns Pointer to the new item on success, NULL on failure. 194 194 * @param pVM Pointer to the cross context VM structure w/ ring-0. 195 195 * @param hQueue The queue handle. 196 196 * @param pvOwner The queue owner. 197 * @param ppNew Where to return the item pointer on success.198 197 * @thread Any thread. 199 198 */ -
trunk/src/VBox/VMM/VMMR3/PDMQueue.cpp
r93609 r93612 542 542 * 543 543 * @param pQueue The queue. 544 * @param pItem The item. 544 * @param pbItems Where the items area starts. 545 * @param cbItem Item size. 546 * @param pItem The item to free. 545 547 */ 546 548 DECLINLINE(void) pdmR3QueueFreeItem(PPDMQUEUE pQueue, uint8_t *pbItems, uint32_t cbItem, PPDMQUEUEITEMCORE pItem)
Note:
See TracChangeset
for help on using the changeset viewer.