From 741cbc33820cb7c8891f3ed0eae820ec447e298d Mon Sep 17 00:00:00 2001 From: Ritu Srivastava Date: Tue, 25 Jan 2011 16:23:08 -0800 Subject: [PATCH] fix failing thread object run A previously exited Thread object refuses to run again, if the thread-id of the caller, conincides with the thread-id it previously used in the worker thread. Hence reset the previously used worker thread-id to -1 when it exits. Signed-off-by: Ritu Srivastava Change-Id: I873925c312a43ec8a16392b98cc959042ff6bfd2 Signed-off-by: Madan Ankapura --- libs/utils/Threads.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/libs/utils/Threads.cpp b/libs/utils/Threads.cpp index ad9a94f59..b1bd82844 100644 --- a/libs/utils/Threads.cpp +++ b/libs/utils/Threads.cpp @@ -778,6 +778,7 @@ int Thread::_threadLoop(void* user) // called by a new thread using the same thread ID as this one. self->mThread = thread_id_t(-1); self->mThreadExitedCondition.broadcast(); + self->mThread = thread_id_t(-1); // thread id could be reused self->mLock.unlock(); break; }