diff options
| author | 2020-01-30 22:20:03 +0000 | |
|---|---|---|
| committer | 2020-01-30 22:20:03 +0000 | |
| commit | 7c04a6925c1e50ed55ab631ab6ea02c0c76ba6ec (patch) | |
| tree | fe30b33b17fc53059c14b4db32fc94806298a9bd | |
| parent | 638ab5b934b8802a39a9fddcf8d59c6efabcdc35 (diff) | |
| parent | 39f582ba93f1f9cf27efcd3485d365d3132e2837 (diff) | |
Merge "libbinder: automatic unlink, print cached desc" am: 40927e84e7 am: 39f582ba93
Change-Id: Ib8e7ad149f2befd479fa56416958c3ec4aae3ac5
| -rw-r--r-- | libs/binder/BpBinder.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libs/binder/BpBinder.cpp b/libs/binder/BpBinder.cpp index 238c9dcc7f..f16c39cdc1 100644 --- a/libs/binder/BpBinder.cpp +++ b/libs/binder/BpBinder.cpp @@ -435,7 +435,8 @@ void BpBinder::onLastStrongRef(const void* /*id*/) Vector<Obituary>* obits = mObituaries; if(obits != nullptr) { if (!obits->isEmpty()) { - ALOGI("onLastStrongRef automatically unlinking death recipients"); + ALOGI("onLastStrongRef automatically unlinking death recipients: %s", + mDescriptorCache.size() ? String8(mDescriptorCache).c_str() : "<uncached descriptor>"); } if (ipc) ipc->clearDeathNotification(mHandle, this); |