summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorAndroid (Google) Code Review <android-gerrit@google.com>2009-09-09 03:29:19 -0700
committerAndroid (Google) Code Review <android-gerrit@google.com>2009-09-09 03:29:19 -0700
commit11c803ac77b6a9b815180b4649a700361d3b8cfe (patch)
treeaf550a05e37000fc8bec4508251afff33a64570f /include
parent72e2d6da79a2fc3b5346c02ed40b9335c1eb78fa (diff)
parentd42bd87f23974164d2539ea85c7b5e6329faf2c2 (diff)
downloadframeworks_base-11c803ac77b6a9b815180b4649a700361d3b8cfe.zip
frameworks_base-11c803ac77b6a9b815180b4649a700361d3b8cfe.tar.gz
frameworks_base-11c803ac77b6a9b815180b4649a700361d3b8cfe.tar.bz2
Merge change 24335 into eclair
* changes: use broadcast() instead of signal() when signaling the condition-variable Thread::RequestExitAndWait() is waiting for
Diffstat (limited to 'include')
-rw-r--r--include/utils/threads.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/include/utils/threads.h b/include/utils/threads.h
index e9b0788..0fc533f 100644
--- a/include/utils/threads.h
+++ b/include/utils/threads.h
@@ -408,6 +408,9 @@ private:
volatile bool mExitPending;
volatile bool mRunning;
sp<Thread> mHoldSelf;
+#if HAVE_ANDROID_OS
+ int mTid;
+#endif
};