X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Flib%2Fplatform%2Fthreads%2Fthreads.h;h=e29578c728a1b5b0abf5288b5898615433fb6498;hb=466925f5c43536e5fd96632615810da783b78096;hp=f2de310a23749f7960ef3882008c61e317c5eeb9;hpb=960f33c651b2dd1e6331dafe5b21705c11cee1a2;p=deb_libcec.git diff --git a/src/lib/platform/threads/threads.h b/src/lib/platform/threads/threads.h index f2de310..e29578c 100644 --- a/src/lib/platform/threads/threads.h +++ b/src/lib/platform/threads/threads.h @@ -45,7 +45,12 @@ namespace PLATFORM 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) @@ -88,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, m_bRunning); - 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); @@ -113,12 +122,17 @@ namespace PLATFORM m_bStop = true; } - if (bRunning && bWaitForExit) + if (bRunning && iWaitMs >= 0) { - void *retVal = NULL; - bReturn = ThreadsWait(m_thread, &retVal); + CLockObject lock(m_threadMutex); + bReturn = m_threadCondition.Wait(m_threadMutex, m_bStopped, iWaitMs); } - return true; + else + { + bReturn = true; + } + + return bReturn; } virtual bool Sleep(uint32_t iTimeout) @@ -131,13 +145,13 @@ namespace PLATFORM protected: void SetRunning(bool bSetTo); + CMutex m_threadMutex; private: - bool m_bStop; - bool m_bRunning; - bool m_bStopped; - 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; }; };