- Timestamp:
- Jun 12, 2020 12:52:16 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Audio/DevIchAc97.cpp
r84447 r84815 3802 3802 { 3803 3803 /* Re-arm the timer for this stream. */ 3804 ichac97R3TimerSet(pDevIns, pStream, pStreamCC->State.cTransferTicks); 3804 /** @todo r=aeichner This causes a VM hang upon saved state resume when NetBSD is used as a guest 3805 * Stopping the timer if cTransferTicks is 0 is a workaround but needs further investigation, 3806 * see @bugref{9759} for more information. */ 3807 if (pStreamCC->State.cTransferTicks) 3808 ichac97R3TimerSet(pDevIns, pStream, pStreamCC->State.cTransferTicks); 3809 else 3810 PDMDevHlpTimerStop(pDevIns, pStream->hTimer); 3805 3811 } 3806 3812
Note:
See TracChangeset
for help on using the changeset viewer.