Changeset 81850 in vbox for trunk/src/VBox/VMM
- Timestamp:
- Nov 14, 2019 9:36:00 PM (5 years ago)
- svn:sync-xref-src-repo-rev:
- 134644
- Location:
- trunk/src/VBox/VMM
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR0/PDMR0Device.cpp
r81841 r81850 1019 1019 RT_NOREF(pDevIns); 1020 1020 return PDMCritSectGetRecursion(pCritSect); 1021 } 1022 1023 1024 /** @interface_method_impl{PDMDEVHLPR0,pfnCritSectScheduleExitEvent} */ 1025 static DECLCALLBACK(int) pdmR0DevHlp_CritSectScheduleExitEvent(PPDMDEVINS pDevIns, PPDMCRITSECT pCritSect, 1026 SUPSEMEVENT hEventToSignal) 1027 { 1028 PDMDEV_ASSERT_DEVINS(pDevIns); 1029 RT_NOREF(pDevIns); 1030 return PDMHCCritSectScheduleExitEvent(pCritSect, hEventToSignal); 1021 1031 } 1022 1032 … … 1161 1171 pdmR0DevHlp_CritSectHasWaiters, 1162 1172 pdmR0DevHlp_CritSectGetRecursion, 1173 pdmR0DevHlp_CritSectScheduleExitEvent, 1163 1174 pdmR0DevHlp_DBGFTraceBuf, 1164 1175 pdmR0DevHlp_PCIBusSetUpContext, -
trunk/src/VBox/VMM/VMMR3/PDMDevHlp.cpp
r81811 r81850 3043 3043 RT_NOREF(pDevIns); 3044 3044 return PDMCritSectGetRecursion(pCritSect); 3045 } 3046 3047 3048 /** @interface_method_impl{PDMDEVHLPR3,pfnCritSectScheduleExitEvent} */ 3049 static DECLCALLBACK(int) pdmR3DevHlp_CritSectScheduleExitEvent(PPDMDEVINS pDevIns, PPDMCRITSECT pCritSect, 3050 SUPSEMEVENT hEventToSignal) 3051 { 3052 PDMDEV_ASSERT_DEVINS(pDevIns); 3053 RT_NOREF(pDevIns); 3054 return PDMHCCritSectScheduleExitEvent(pCritSect, hEventToSignal); 3045 3055 } 3046 3056 … … 4795 4805 pdmR3DevHlp_CritSectHasWaiters, 4796 4806 pdmR3DevHlp_CritSectGetRecursion, 4807 pdmR3DevHlp_CritSectScheduleExitEvent, 4797 4808 pdmR3DevHlp_CritSectDelete, 4798 4809 pdmR3DevHlp_ThreadCreate, … … 5290 5301 pdmR3DevHlp_CritSectHasWaiters, 5291 5302 pdmR3DevHlp_CritSectGetRecursion, 5303 pdmR3DevHlp_CritSectScheduleExitEvent, 5292 5304 pdmR3DevHlp_CritSectDelete, 5293 5305 pdmR3DevHlp_ThreadCreate,
Note:
See TracChangeset
for help on using the changeset viewer.