From 389154e0907f50b443216719e30b580730c5f4f4 Mon Sep 17 00:00:00 2001 From: Steven Moreland Date: Tue, 28 May 2024 22:22:38 +0000 Subject: 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 --- libs/binder/IPCThreadState.cpp | 1 + 1 file changed, 1 insertion(+) (limited to 'libs/binder/IPCThreadState.cpp') 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; -- cgit v1.2.3-59-g8ed1b