1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2026-06-08 00:44:48 -04:00

Message pipes rework (2)

This commit is contained in:
f4exb
2022-02-25 23:43:50 +01:00
parent 555a5d1d4c
commit 7bbc2749eb
32 changed files with 223 additions and 182 deletions
+3
View File
@@ -44,6 +44,7 @@ DataFifo::DataFifo(QObject* parent) :
m_currentDataType(DataTypeI16),
m_mutex(QMutex::Recursive)
{
setObjectName("DataFifo");
m_suppressed = -1;
m_size = 0;
m_fill = 0;
@@ -57,6 +58,7 @@ DataFifo::DataFifo(int size, QObject* parent) :
m_currentDataType(DataTypeI16),
m_mutex(QMutex::Recursive)
{
setObjectName("DataFifo");
m_suppressed = -1;
create(size);
}
@@ -67,6 +69,7 @@ DataFifo::DataFifo(const DataFifo& other) :
m_currentDataType(DataTypeI16),
m_mutex(QMutex::Recursive)
{
setObjectName("DataFifo");
m_suppressed = -1;
m_size = m_data.size();
m_fill = 0;