fix thread namespace

This commit is contained in:
smogm
2015-01-12 16:38:28 +01:00
parent c37263f594
commit 3ef2eeb8aa
8 changed files with 23 additions and 23 deletions

View File

@@ -103,7 +103,7 @@ int cAudio::Start(void)
{
lt_debug("%s >\n", __func__);
if (! HAL_nodec)
startThread();
SimpleThread::startThread();
lt_debug("%s <\n", __func__);
return 0;
}
@@ -114,7 +114,7 @@ int cAudio::Stop(void)
if (thread_started)
{
thread_started = false;
joinThread();
SimpleThread::joinThread();
}
lt_debug("%s <\n", __func__);
return 0;