Changeset 95164 in vbox for trunk/src/VBox
- Timestamp:
- Jun 1, 2022 2:10:36 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Graphics/DevVGA-SVGA.cpp
r94830 r95164 6942 6942 if (pThisCC->svga.pFIFOIOThread) 6943 6943 { 6944 /* Hack around a deadlock: 6945 * - the caller holds the device critsect; 6946 * - FIFO thread may attempt to enter the critsect too (when raising an IRQ). 6947 */ 6948 PDMDevHlpCritSectLeave(pDevIns, &pThis->CritSect); 6949 6944 6950 int rc = vmsvgaR3RunExtCmdOnFifoThread(pDevIns, pThis, pThisCC, VMSVGA_FIFO_EXTCMD_POWEROFF, 6945 6951 NULL /*pvParam*/, 30000 /*ms*/); 6946 6952 AssertLogRelRC(rc); 6953 6954 int const rcLock = PDMDevHlpCritSectEnter(pDevIns, &pThis->CritSect, VERR_IGNORED); 6955 PDM_CRITSECT_RELEASE_ASSERT_RC_DEV(pDevIns, &pThis->CritSect, rcLock); 6947 6956 } 6948 6957 }
Note:
See TracChangeset
for help on using the changeset viewer.