diff options
author | Elliott Hughes <enh@google.com> | 2014-08-18 19:34:22 +0000 |
---|---|---|
committer | Android Git Automerger <android-git-automerger@android.com> | 2014-08-18 19:34:22 +0000 |
commit | cb3b7ce1d897dfe3339ed2b0cdc48355026f9dd8 (patch) | |
tree | 59a09dacbc4d90dcc0e61685b0556e51eb2f6acc /libs | |
parent | 9612a31003dc84d522728d2481def385d25d20ab (diff) | |
parent | 703b60ce39e52d319074adf53704d33f9c16dbbd (diff) | |
download | frameworks_native-cb3b7ce1d897dfe3339ed2b0cdc48355026f9dd8.zip frameworks_native-cb3b7ce1d897dfe3339ed2b0cdc48355026f9dd8.tar.gz frameworks_native-cb3b7ce1d897dfe3339ed2b0cdc48355026f9dd8.tar.bz2 |
am 703b60ce: Merge "Use gettid directly in binder."
* commit '703b60ce39e52d319074adf53704d33f9c16dbbd':
Use gettid directly in binder.
Diffstat (limited to 'libs')
-rw-r--r-- | libs/binder/IPCThreadState.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/binder/IPCThreadState.cpp b/libs/binder/IPCThreadState.cpp index 57c4638..ae8f648 100644 --- a/libs/binder/IPCThreadState.cpp +++ b/libs/binder/IPCThreadState.cpp @@ -682,7 +682,7 @@ status_t IPCThreadState::clearDeathNotification(int32_t handle, BpBinder* proxy) IPCThreadState::IPCThreadState() : mProcess(ProcessState::self()), - mMyThreadId(androidGetTid()), + mMyThreadId(gettid()), mStrictModePolicy(0), mLastTransactionBinderFlags(0) { |