CComponentsTimer: move mySleep call into mutex block, seems was not ok so

Origin commit data
------------------
Branch: ni/coolstream
Commit: 45623aa810
Author: Thilo Graf <dbt@novatux.de>
Date: 2015-02-28 (Sat, 28 Feb 2015)


------------------
No further description and justification available within origin commit message!

------------------
This commit was generated by Migit
This commit is contained in:
2015-02-28 23:22:19 +01:00
parent e6941431fa
commit 22440e3791

View File

@@ -61,8 +61,8 @@ void* CComponentsTimer::initTimerThread(void *arg)
while(timer) {
timer->mutex.lock();
timer->OnTimer();
timer->mutex.unlock();
mySleep(timer->tm_interval);
timer->mutex.unlock();
}
return 0;