1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2026-06-02 06:04:39 -04:00

File source debugging interim state #1

This commit is contained in:
f4exb
2015-08-03 09:25:38 +02:00
parent f9029e8572
commit fb167dad70
3 changed files with 16 additions and 3 deletions
@@ -47,6 +47,7 @@ FileSourceThread::~FileSourceThread()
void FileSourceThread::startWork()
{
std::cerr << "FileSourceThread::startWork" << std::endl;
m_startWaitMutex.lock();
start();
while(!m_running)
@@ -56,6 +57,7 @@ void FileSourceThread::startWork()
void FileSourceThread::stopWork()
{
std::cerr << "FileSourceThread::stopWork" << std::endl;
m_running = false;
wait();
}