diff options
author | 2024-05-28 22:22:38 +0000 | |
---|---|---|
committer | 2024-05-28 22:22:38 +0000 | |
commit | 389154e0907f50b443216719e30b580730c5f4f4 (patch) | |
tree | c418c5f67d8aefa12529a634f6c1136189a47314 /libs/binder/IPCThreadState.cpp | |
parent | dbecfa8c6e89fe56d323be583f73b620976ee12f (diff) |
libbinder: explicit log for frozen process
This error is ambiguous without the log, and it logged
before this case was split from the default case.
Bug: 333689623
Test: N/A
Change-Id: Ia6cfe7fc35a6e79f1ae3284674f101efc784af40
Diffstat (limited to 'libs/binder/IPCThreadState.cpp')
-rw-r--r-- | libs/binder/IPCThreadState.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libs/binder/IPCThreadState.cpp b/libs/binder/IPCThreadState.cpp index ef96f803c3..2c7ab151ed 100644 --- a/libs/binder/IPCThreadState.cpp +++ b/libs/binder/IPCThreadState.cpp @@ -1027,6 +1027,7 @@ status_t IPCThreadState::waitForResponse(Parcel *reply, status_t *acquireResult) goto finish; case BR_FROZEN_REPLY: + ALOGW("Transaction failed because process frozen."); err = FAILED_TRANSACTION; goto finish; |