Changeset 68602 in vbox for trunk/src/VBox/Devices
- Timestamp:
- Sep 1, 2017 1:40:25 PM (8 years ago)
- svn:sync-xref-src-repo-rev:
- 117826
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Audio/DevHDA.cpp
r68601 r68602 2306 2306 ASMAtomicXchgBool(&pThis->fTimerActive, false); 2307 2307 2308 /* 2309 * Stop the timer, if any. 2310 */ 2311 if ( pThis->pTimer 2312 && TMTimerIsActive(pThis->pTimer)) 2313 { 2314 int rc2 = TMTimerStop(pThis->pTimer); 2315 AssertRC(rc2); 2316 } 2308 /* Don't stop the timer via TMTimerStop() here, as this function 2309 * might be called with an MMIO handler which then in case triggers 2310 * a lock order violation. */ 2317 2311 } 2318 2312
Note:
See TracChangeset
for help on using the changeset viewer.