SampleMO FIFO: fixed mutex recursion mode

This commit is contained in:
f4exb 2019-11-17 02:37:58 +01:00
parent 09404b729d
commit 55d43c2e03
1 changed files with 2 additions and 1 deletions

View File

@ -22,7 +22,8 @@ const unsigned int SampleMOFifo::m_guardDivisor = 10;
SampleMOFifo::SampleMOFifo(QObject *parent) :
QObject(parent),
m_nbStreams(0)
m_nbStreams(0),
m_mutex(QMutex::Recursive)
{}
SampleMOFifo::SampleMOFifo(unsigned int nbStreams, unsigned int size, QObject *parent) :