1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2026-06-01 21:54:55 -04:00

Tentative fix for possible lockup of mutex at DSPDevieSourceEngine thread exit

This commit is contained in:
f4exb
2017-10-04 00:50:42 +02:00
parent 3405424ad1
commit 53daaa5b0c
2 changed files with 7 additions and 3 deletions
+5 -2
View File
@@ -73,8 +73,11 @@ void DSPDeviceSourceEngine::start()
void DSPDeviceSourceEngine::stop()
{
qDebug() << "DSPDeviceSourceEngine::stop";
DSPExit cmd;
m_syncMessenger.sendWait(cmd);
gotoIdle();
m_state = StNotStarted;
QThread::exit();
// DSPExit cmd;
// m_syncMessenger.sendWait(cmd);
}
bool DSPDeviceSourceEngine::initAcquisition()