X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Flib%2Fplatform%2Fthreads%2Fthreads.h;h=e29578c728a1b5b0abf5288b5898615433fb6498;hb=065a893a14c9b8f9b6f4672c9f455c7490d8e0d2;hp=8fb71fce2b2158382168379054d30750b1e0c4dc;hpb=c12ee8e65c67f6435fba0a09cbea363b13f6c56d;p=deb_libcec.git diff --git a/src/lib/platform/threads/threads.h b/src/lib/platform/threads/threads.h index 8fb71fc..e29578c 100644 --- a/src/lib/platform/threads/threads.h +++ b/src/lib/platform/threads/threads.h @@ -40,11 +40,17 @@ namespace PLATFORM public: CThread(void) : m_bStop(false), - m_bRunning(false) {} + m_bRunning(false), + m_bStopped(false) {} virtual ~CThread(void) { - StopThread(); + StopThread(0); + void *retVal; + ThreadsWait(m_thread, &retVal); + #if defined(__WINDOWS__) + (void *)retVal; //"unreferenced local variable" warning + #endif } static void *ThreadHandler(CThread *thread) @@ -53,17 +59,21 @@ namespace PLATFORM if (thread) { - CLockObject lock(thread->m_threadMutex); - thread->m_bRunning = true; - lock.Unlock(); - thread->m_threadCondition.Broadcast(); + { + CLockObject lock(thread->m_threadMutex); + thread->m_bRunning = true; + thread->m_bStopped = false; + thread->m_threadCondition.Broadcast(); + } retVal = thread->Process(); - lock.Lock(); - thread->m_bRunning = false; - lock.Unlock(); - thread->m_threadCondition.Broadcast(); + { + CLockObject lock(thread->m_threadMutex); + thread->m_bRunning = false; + thread->m_bStopped = true; + thread->m_threadCondition.Broadcast(); + } } return retVal; @@ -83,22 +93,26 @@ namespace PLATFORM virtual bool CreateThread(bool bWait = true) { - bool bReturn(false); - CLockObject lock(m_threadMutex); - if (!IsRunning()) + bool bReturn(false); + CLockObject lock(m_threadMutex); + if (!IsRunning()) + { + m_bStop = false; + if (ThreadsCreate(m_thread, CThread::ThreadHandler, ((void*)static_cast(this)))) { - m_bStop = false; - if (ThreadsCreate(m_thread, CThread::ThreadHandler, ((void*)static_cast(this)))) - { - if (bWait) - m_threadCondition.Wait(m_threadMutex); - bReturn = true; - } + if (bWait) + m_threadCondition.Wait(m_threadMutex, m_bRunning); + bReturn = true; } + } return bReturn; } - virtual bool StopThread(bool bWaitForExit = true) + /*! + * @brief Stop the thread + * @param iWaitMs negative = don't wait, 0 = infinite, or the amount of ms to wait + */ + virtual bool StopThread(int iWaitMs = 5000) { bool bReturn(true); bool bRunning(false); @@ -106,33 +120,38 @@ namespace PLATFORM CLockObject lock(m_threadMutex); bRunning = IsRunning(); m_bStop = true; - m_threadCondition.Broadcast(); } - if (bRunning && bWaitForExit) + if (bRunning && iWaitMs >= 0) + { + CLockObject lock(m_threadMutex); + bReturn = m_threadCondition.Wait(m_threadMutex, m_bStopped, iWaitMs); + } + else { - void *retVal = NULL; - bReturn = ThreadsWait(m_thread, &retVal); + bReturn = true; } - return true; + + return bReturn; } virtual bool Sleep(uint32_t iTimeout) { CLockObject lock(m_threadMutex); - return m_bStop ? false : m_threadCondition.Wait(m_threadMutex, iTimeout); + return m_bStop ? false : m_threadCondition.Wait(m_threadMutex, m_bStopped, iTimeout); } virtual void *Process(void) = 0; protected: void SetRunning(bool bSetTo); + CMutex m_threadMutex; private: - bool m_bStop; - bool m_bRunning; - CCondition m_threadCondition; - CMutex m_threadMutex; - thread_t m_thread; + bool m_bStop; + bool m_bRunning; + bool m_bStopped; + CCondition m_threadCondition; + thread_t m_thread; }; };