diff options
| author | 2022-12-09 01:09:50 +0000 | |
|---|---|---|
| committer | 2022-12-09 01:09:50 +0000 | |
| commit | c3b4ed369e30c1b6da415894c80a624f6d440dcc (patch) | |
| tree | 38aff4c69e3dc705e856504c3bb16d4bf626b236 /libs/binder/IPCThreadState.cpp | |
| parent | 36ee8fa53bd8df89af8f57fe6004ba1d39b7100d (diff) | |
| parent | 0e3443d157b9d18bc1d9d6a26becb1ff930efa0d (diff) | |
Merge "Support BR_TRANSACTION_PENDING_FROZEN"
Diffstat (limited to 'libs/binder/IPCThreadState.cpp')
| -rw-r--r-- | libs/binder/IPCThreadState.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libs/binder/IPCThreadState.cpp b/libs/binder/IPCThreadState.cpp index 77703749a1..c0f3e3060e 100644 --- a/libs/binder/IPCThreadState.cpp +++ b/libs/binder/IPCThreadState.cpp @@ -1017,6 +1017,10 @@ status_t IPCThreadState::waitForResponse(Parcel *reply, status_t *acquireResult) if (!reply && !acquireResult) goto finish; break; + case BR_TRANSACTION_PENDING_FROZEN: + ALOGW("Sending oneway calls to frozen process."); + goto finish; + case BR_DEAD_REPLY: err = DEAD_OBJECT; goto finish; |