From 78d138bd56ecc5a5c2184415af8dd1778dd71337 Mon Sep 17 00:00:00 2001 From: Lars Op den Kamp Date: Sun, 26 Feb 2012 23:17:21 +0100 Subject: [PATCH] cec: added a timeout to StopThread() --- src/lib/platform/threads/threads.h | 19 ++++++++++++++----- 1 file changed, 14 insertions(+), 5 deletions(-) diff --git a/src/lib/platform/threads/threads.h b/src/lib/platform/threads/threads.h index 0efebdc..c730da8 100644 --- a/src/lib/platform/threads/threads.h +++ b/src/lib/platform/threads/threads.h @@ -103,7 +103,11 @@ namespace PLATFORM 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 +117,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); + } + else + { + bReturn = true; } - return true; + + return bReturn; } virtual bool Sleep(uint32_t iTimeout) -- 2.34.1