From 5a05bdcb1aa3775d2b9491f2285089d89ef83d0d Mon Sep 17 00:00:00 2001 From: f4exb Date: Mon, 13 Feb 2017 11:30:40 +0100 Subject: [PATCH] New scope: use configuration mutex also for trigger operations --- sdrbase/dsp/scopevisng.cpp | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/sdrbase/dsp/scopevisng.cpp b/sdrbase/dsp/scopevisng.cpp index 8a27810cc..4002de434 100644 --- a/sdrbase/dsp/scopevisng.cpp +++ b/sdrbase/dsp/scopevisng.cpp @@ -40,7 +40,7 @@ ScopeVisNG::ScopeVisNG(GLScopeNG* glScope) : m_glScope(glScope), m_preTriggerDelay(0), m_currentTriggerIndex(0), - m_focusedTriggerIndex(0), + m_focusedTriggerIndex(0), m_triggerState(TriggerUntriggered), m_focusedTraceIndex(0), m_traceSize(m_traceChunkSize), @@ -159,7 +159,7 @@ void ScopeVisNG::feed(const SampleVector::const_iterator& cbegin, const SampleVe return; } - if(!m_mutex.tryLock(2)) + if(!m_mutex.tryLock(2)) // prevent conflicts with configuration process return; SampleVector::const_iterator begin(cbegin); @@ -510,6 +510,7 @@ bool ScopeVisNG::handleMessage(const Message& message) } else if (MsgScopeVisNGAddTrigger::match(message)) { + QMutexLocker configLocker(&m_mutex); MsgScopeVisNGAddTrigger& conf = (MsgScopeVisNGAddTrigger&) message; m_triggerConditions.push_back(TriggerCondition(conf.getTriggerData())); m_triggerConditions.back().initProjector(); @@ -517,6 +518,7 @@ bool ScopeVisNG::handleMessage(const Message& message) } else if (MsgScopeVisNGChangeTrigger::match(message)) { + QMutexLocker configLocker(&m_mutex); MsgScopeVisNGChangeTrigger& conf = (MsgScopeVisNGChangeTrigger&) message; int triggerIndex = conf.getTriggerIndex(); @@ -536,6 +538,7 @@ bool ScopeVisNG::handleMessage(const Message& message) } else if (MsgScopeVisNGRemoveTrigger::match(message)) { + QMutexLocker configLocker(&m_mutex); MsgScopeVisNGRemoveTrigger& conf = (MsgScopeVisNGRemoveTrigger&) message; int triggerIndex = conf.getTriggerIndex();