Changeset 89949 in vbox for trunk/src/VBox/VMM/VMMR3/PDMDriver.cpp
- Timestamp:
- Jun 29, 2021 12:18:45 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR3/PDMDriver.cpp
r88811 r89949 1876 1876 1877 1877 1878 /** @interface_method_impl{PDMDRVHLPR3,pfnQueryGenericUserObject} */ 1879 static DECLCALLBACK(void *) pdmR3DrvHlp_QueryGenericUserObject(PPDMDRVINS pDrvIns, PCRTUUID pUuid) 1880 { 1881 PDMDRV_ASSERT_DRVINS(pDrvIns); 1882 LogFlow(("pdmR3DrvHlp_QueryGenericUserObject: caller='%s'/%d: pUuid=%p:%RTuuid\n", 1883 pDrvIns->pReg->szName, pDrvIns->iInstance, pUuid, pUuid)); 1884 1885 void *pvRet; 1886 PUVM pUVM = pDrvIns->Internal.s.pVMR3->pUVM; 1887 if (pUVM->pVmm2UserMethods->pfnQueryGenericObject) 1888 pvRet = pUVM->pVmm2UserMethods->pfnQueryGenericObject(pUVM->pVmm2UserMethods, pUVM, pUuid); 1889 else 1890 pvRet = NULL; 1891 1892 LogRel(("pdmR3DrvHlp_QueryGenericUserObject: caller='%s'/%d: returns %#p for %RTuuid\n", 1893 pDrvIns->pReg->szName, pDrvIns->iInstance, pvRet, pUuid)); 1894 return pvRet; 1895 } 1896 1897 1878 1898 /** 1879 1899 * The driver helper structure. … … 1927 1947 pdmR3DrvHlp_TimerSetMillies, 1928 1948 pdmR3DrvHlp_STAMDeregisterByPrefix, 1929 NULL,1949 pdmR3DrvHlp_QueryGenericUserObject, 1930 1950 NULL, 1931 1951 NULL,
Note:
See TracChangeset
for help on using the changeset viewer.