summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author Andreas Gampe <agampe@google.com> 2016-02-01 22:32:34 +0000
committer android-build-merger <android-build-merger@google.com> 2016-02-01 22:32:34 +0000
commit8267a0b4d044c345e5bb24e19ea266d52381886c (patch)
tree0e7cc20d518ddd0d994a7c8ef99692838a9efe93
parent040424fdf9378cab658847f97050f725f4d7bdc3 (diff)
parent35cadd735aa3db14e82e7d492f7f7d64357e915a (diff)
Merge "Binder: Add log output in IPCThreadState::self()" am: 2be113a248 am: e7ae3b1962
am: 35cadd735a * commit '35cadd735aa3db14e82e7d492f7f7d64357e915a': Binder: Add log output in IPCThreadState::self()
-rw-r--r--libs/binder/IPCThreadState.cpp10
1 files changed, 8 insertions, 2 deletions
diff --git a/libs/binder/IPCThreadState.cpp b/libs/binder/IPCThreadState.cpp
index a237684783..1f6bda2a94 100644
--- a/libs/binder/IPCThreadState.cpp
+++ b/libs/binder/IPCThreadState.cpp
@@ -287,12 +287,18 @@ restart:
return new IPCThreadState;
}
- if (gShutdown) return NULL;
+ if (gShutdown) {
+ ALOGW("Calling IPCThreadState::self() during shutdown is dangerous, expect a crash.\n");
+ return NULL;
+ }
pthread_mutex_lock(&gTLSMutex);
if (!gHaveTLS) {
- if (pthread_key_create(&gTLS, threadDestructor) != 0) {
+ int key_create_value = pthread_key_create(&gTLS, threadDestructor);
+ if (key_create_value != 0) {
pthread_mutex_unlock(&gTLSMutex);
+ ALOGW("IPCThreadState::self() unable to create TLS key, expect a crash: %s\n",
+ strerror(key_create_value));
return NULL;
}
gHaveTLS = true;