- Timestamp:
- Sep 9, 2019 2:29:33 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR3/PDMDevHlp.cpp
r80673 r80677 2550 2550 RT_NOREF(pDevIns); /** @todo pass pDevIns->Internal.s.pVMR3 to the crit sect code. */ 2551 2551 return PDMCritSectIsOwner(pCritSect); 2552 }2553 2554 2555 /** @interface_method_impl{PDMDEVHLPR3,pfnCritSectIsOwnerEx} */2556 static DECLCALLBACK(bool) pdmR3DevHlp_CritSectIsOwnerEx(PPDMDEVINS pDevIns, PCPDMCRITSECT pCritSect, PVMCPUCC pVCpu)2557 {2558 PDMDEV_ASSERT_DEVINS(pDevIns);2559 RT_NOREF(pDevIns); /** @todo pass pDevIns->Internal.s.pVMR3 to the crit sect code. */2560 return PDMCritSectIsOwnerEx(pCritSect, pVCpu);2561 2552 } 2562 2553
Note:
See TracChangeset
for help on using the changeset viewer.