summaryrefslogtreecommitdiffstats
path: root/libs
diff options
context:
space:
mode:
authorDianne Hackborn <hackbod@google.com>2010-09-24 15:28:34 -0700
committerAndroid (Google) Code Review <android-gerrit@google.com>2010-09-24 15:28:34 -0700
commita7ef18fca50d0db99a161d8c7e2d8979f0445503 (patch)
tree32d3ee6fd26528d8c55e50144b17ae16be5fe6b5 /libs
parent194bbcce9ba15634500f542b9ea017b2cf154b45 (diff)
parentf123e49bf0708719b51a7064ae134c097abe4a54 (diff)
downloadframeworks_base-a7ef18fca50d0db99a161d8c7e2d8979f0445503.zip
frameworks_base-a7ef18fca50d0db99a161d8c7e2d8979f0445503.tar.gz
frameworks_base-a7ef18fca50d0db99a161d8c7e2d8979f0445503.tar.bz2
Merge "Some debugging support." into gingerbread
Diffstat (limited to 'libs')
-rw-r--r--libs/binder/IPCThreadState.cpp14
1 files changed, 14 insertions, 0 deletions
diff --git a/libs/binder/IPCThreadState.cpp b/libs/binder/IPCThreadState.cpp
index a3e117f..13c58f0 100644
--- a/libs/binder/IPCThreadState.cpp
+++ b/libs/binder/IPCThreadState.cpp
@@ -517,12 +517,26 @@ status_t IPCThreadState::transact(int32_t handle,
}
if ((flags & TF_ONE_WAY) == 0) {
+ #if 0
+ if (code == 4) { // relayout
+ LOGI(">>>>>> CALLING transaction 4");
+ } else {
+ LOGI(">>>>>> CALLING transaction %d", code);
+ }
+ #endif
if (reply) {
err = waitForResponse(reply);
} else {
Parcel fakeReply;
err = waitForResponse(&fakeReply);
}
+ #if 0
+ if (code == 4) { // relayout
+ LOGI("<<<<<< RETURNING transaction 4");
+ } else {
+ LOGI("<<<<<< RETURNING transaction %d", code);
+ }
+ #endif
IF_LOG_TRANSACTIONS() {
TextOutput::Bundle _b(alog);