Changeset 107215 in vbox for trunk/src/VBox/Devices
- Timestamp:
- Dec 3, 2024 7:58:35 AM (3 months ago)
- svn:sync-xref-src-repo-rev:
- 166219
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/VMMDev/VMMDevTesting.cpp
r106061 r107215 44 44 #include <iprt/test.h> 45 45 46 #ifdef IN_RING347 # define USING_VMM_COMMON_DEFS /* HACK ALERT! We ONLY want the EMT thread handles, so the common defs doesn't matter. */48 # include <VBox/vmm/vmcc.h>49 #endif50 46 #include <VBox/AssertGuest.h> 51 47 … … 959 955 { 960 956 PVMMDEV pThis = PDMDEVINS_2_DATA(pDevIns, PVMMDEV); 961 PVM pVM = PDMDevHlpGetVM(pDevIns);962 AssertPtr(pVM);963 957 964 958 while (RT_LIKELY(pThread->enmState == PDMTHREADSTATE_RUNNING)) … … 988 982 PDMDevHlpSUPSemEventWaitNsRelIntr(pDevIns, pThis->hTestingLockEvt, pThis->TestingLockControl.s.cUsHold); 989 983 if (pThis->TestingLockControl.s.fPokeBeforeRelease) 990 VMCC_FOR_EACH_VMCPU_STMT(pVM, RTThreadPoke(pVCpu->hThread));984 pDevIns->pHlpR3->pfnPokeAllEmts(pDevIns); 991 985 } 992 986
Note:
See TracChangeset
for help on using the changeset viewer.