- Timestamp:
- Oct 21, 2021 1:17:30 PM (3 years ago)
- Location:
- trunk/src/VBox
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Network/DrvIntNet.cpp
r91883 r91945 1199 1199 if (pThis->pXmitThread) 1200 1200 { 1201 int rc = PDM R3ThreadDestroy(pThis->pXmitThread, NULL);1201 int rc = PDMDrvHlpThreadDestroy(pDrvIns, pThis->pXmitThread, NULL); 1202 1202 AssertRC(rc); 1203 1203 pThis->pXmitThread = NULL; -
trunk/src/VBox/Devices/Serial/DrvHostSerial.cpp
r91897 r91945 628 628 * this mode. 629 629 */ 630 PDM R3ThreadSleep(pThread, 100);630 PDMDrvHlpThreadSleep(pThis->pDrvIns, pThread, 100); 631 631 } 632 632 } -
trunk/src/VBox/Devices/USB/DrvVUSBRootHub.cpp
r91897 r91945 934 934 || enmState == VMSTATE_RUNNING_LS) 935 935 { 936 rc = PDM R3ThreadResume(pThis->hThreadPeriodFrame);936 rc = PDMDrvHlpThreadResume(pThis->pDrvIns, pThis->hThreadPeriodFrame); 937 937 AssertRCReturn(rc, rc); 938 938 } -
trunk/src/VBox/VMM/VMMR3/PDMDriver.cpp
r91939 r91945 2231 2231 pdmR3DrvHlp_AsyncNotificationCompleted, 2232 2232 pdmR3DrvHlp_ThreadCreate, 2233 PDMR3ThreadDestroy, 2234 PDMR3ThreadIAmSuspending, 2235 PDMR3ThreadIAmRunning, 2236 PDMR3ThreadSleep, 2237 PDMR3ThreadSuspend, 2238 PDMR3ThreadResume, 2233 2239 pdmR3DrvHlp_AsyncCompletionTemplateCreate, 2234 2240 pdmR3DrvHlp_NetShaperAttach,
Note:
See TracChangeset
for help on using the changeset viewer.