diff options
| author | 2021-04-08 23:57:13 +0000 | |
|---|---|---|
| committer | 2021-04-08 23:57:13 +0000 | |
| commit | 1e311eb20432e86e9216179b42f976b2aab92aba (patch) | |
| tree | f62c1e26d88187f666760e14b80313fd74e3be09 /libs | |
| parent | ce80479f88741f1ab49e8bcac76f9f5fc8ae978f (diff) | |
| parent | 2c2c5d197f62ed846b100a29335982c45a1b3c94 (diff) | |
Merge "libbinder_ndk: add log to death rec. CHECK" am: 2c2c5d197f
Original change: https://android-review.googlesource.com/c/platform/frameworks/native/+/1668469
Change-Id: I34c49ad8f238674849b1344321726fd0c195797a
Diffstat (limited to 'libs')
| -rw-r--r-- | libs/binder/ndk/ibinder.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libs/binder/ndk/ibinder.cpp b/libs/binder/ndk/ibinder.cpp index 76afd4cc2c..883403ac59 100644 --- a/libs/binder/ndk/ibinder.cpp +++ b/libs/binder/ndk/ibinder.cpp @@ -363,7 +363,8 @@ const char* AIBinder_Class_getDescriptor(const AIBinder_Class* clazz) { } void AIBinder_DeathRecipient::TransferDeathRecipient::binderDied(const wp<IBinder>& who) { - CHECK(who == mWho); + CHECK(who == mWho) << who.unsafe_get() << "(" << who.get_refs() << ") vs " << mWho.unsafe_get() + << " (" << mWho.get_refs() << ")"; mOnDied(mCookie); |