Changeset 88567 in vbox for trunk/include/VBox
- Timestamp:
- Apr 16, 2021 2:58:29 PM (4 years ago)
- svn:sync-xref-src-repo-rev:
- 143862
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/vmm/pdmdev.h
r88306 r88567 1510 1510 DECLR0CALLBACKMEMBER(void, pfnUnlock,(PPDMDEVINS pDevIns)); 1511 1511 1512 /** 1513 * Check whether the threads owns the PDM lock. 1514 * 1515 * @returns @c true if the PDM lock is owned, @c false otherwise. 1516 * @param pDevIns The PCI device instance. 1517 */ 1518 DECLR0CALLBACKMEMBER(bool, pfnLockIsOwner,(PPDMDEVINS pDevIns)); 1519 1512 1520 /** Just a safety precaution. */ 1513 1521 uint32_t u32TheEnd; … … 1519 1527 1520 1528 /** Current PDMIOMMUHLPR0 version number. */ 1521 #define PDM_IOMMUHLPR0_VERSION PDM_VERSION_MAKE(0xff13, 2, 0)1529 #define PDM_IOMMUHLPR0_VERSION PDM_VERSION_MAKE(0xff13, 3, 0) 1522 1530 1523 1531 … … 1546 1554 */ 1547 1555 DECLRCCALLBACKMEMBER(void, pfnUnlock,(PPDMDEVINS pDevIns)); 1556 1557 /** 1558 * Check whether the threads owns the PDM lock. 1559 * 1560 * @returns @c true if the PDM lock is owned, @c false otherwise. 1561 * @param pDevIns The PCI device instance. 1562 */ 1563 DECLRCCALLBACKMEMBER(bool, pfnLockIsOwner,(PPDMDEVINS pDevIns)); 1548 1564 1549 1565 /** Just a safety precaution. */ … … 1556 1572 1557 1573 /** Current PDMIOMMUHLPRC version number. */ 1558 #define PDM_IOMMUHLPRC_VERSION PDM_VERSION_MAKE(0xff14, 2, 0)1574 #define PDM_IOMMUHLPRC_VERSION PDM_VERSION_MAKE(0xff14, 3, 0) 1559 1575 1560 1576 … … 1583 1599 */ 1584 1600 DECLR3CALLBACKMEMBER(void, pfnUnlock,(PPDMDEVINS pDevIns)); 1601 1602 /** 1603 * Check whether the threads owns the PDM lock. 1604 * 1605 * @returns @c true if the PDM lock is owned, @c false otherwise. 1606 * @param pDevIns The PCI device instance. 1607 */ 1608 DECLR3CALLBACKMEMBER(bool, pfnLockIsOwner,(PPDMDEVINS pDevIns)); 1585 1609 1586 1610 /** Just a safety precaution. */ … … 1593 1617 1594 1618 /** Current PDMIOMMUHLPR3 version number. */ 1595 #define PDM_IOMMUHLPR3_VERSION PDM_VERSION_MAKE(0xff15, 2, 0)1619 #define PDM_IOMMUHLPR3_VERSION PDM_VERSION_MAKE(0xff15, 3, 0) 1596 1620 1597 1621
Note:
See TracChangeset
for help on using the changeset viewer.