move libthread to libstb-hal

This commit is contained in:
smogm
2015-01-12 18:15:08 +01:00
parent 3ef2eeb8aa
commit 95ee7f9e98
25 changed files with 915 additions and 86 deletions

View File

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