Changeset 81466 in vbox for trunk/src/VBox/VMM
- Timestamp:
- Oct 23, 2019 1:20:34 AM (5 years ago)
- svn:sync-xref-src-repo-rev:
- 134191
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR3/PDMDevHlp.cpp
r81416 r81466 2970 2970 RT_NOREF(pDevIns); 2971 2971 return PDMCritSectGetRecursion(pCritSect); 2972 } 2973 2974 2975 /** @interface_method_impl{PDMDEVHLPR3,pfnCritSectDelete} */ 2976 static DECLCALLBACK(int) pdmR3DevHlp_CritSectDelete(PPDMDEVINS pDevIns, PCPDMCRITSECT pCritSect) 2977 { 2978 PDMDEV_ASSERT_DEVINS(pDevIns); 2979 RT_NOREF(pDevIns); 2980 return PDMR3CritSectDelete(pCritSect); 2972 2981 } 2973 2982 … … 4699 4708 pdmR3DevHlp_CritSectHasWaiters, 4700 4709 pdmR3DevHlp_CritSectGetRecursion, 4710 pdmR3DevHlp_CritSectDelete, 4701 4711 pdmR3DevHlp_ThreadCreate, 4702 4712 pdmR3DevHlp_SetAsyncNotification,
Note:
See TracChangeset
for help on using the changeset viewer.