diff options
| author | 2011-01-30 15:17:33 -0800 | |
|---|---|---|
| committer | 2011-01-30 15:17:33 -0800 | |
| commit | 9b1515590cd18cb9dd6c8ed99bf2145a30e011c1 (patch) | |
| tree | 3608db992e195ce2ef85770ae9cd233c5e8f165e /libs/utils/Threads.cpp | |
| parent | ccacf00df239b8231f154167c99d4ae74cf305e9 (diff) | |
| parent | 5ee1a0c5ee41a9c7366e7e378e5ab232072bb983 (diff) | |
Merge "fix failing thread object run" into gingerbread
Diffstat (limited to 'libs/utils/Threads.cpp')
| -rw-r--r-- | libs/utils/Threads.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libs/utils/Threads.cpp b/libs/utils/Threads.cpp index f6c55e4d89..0b360f45bd 100644 --- a/libs/utils/Threads.cpp +++ b/libs/utils/Threads.cpp @@ -775,6 +775,7 @@ int Thread::_threadLoop(void* user) self->mLock.lock(); self->mRunning = false; self->mThreadExitedCondition.broadcast(); + self->mThread = thread_id_t(-1); // thread id could be reused self->mLock.unlock(); break; } |