diff options
| author | 2023-04-24 23:33:37 +0000 | |
|---|---|---|
| committer | 2023-04-24 23:33:37 +0000 | |
| commit | 16c6483792eba0bd3ea334a655ed5f49ca847f20 (patch) | |
| tree | 7b38507d5e5cb8f8bc698edff17444c57776c51c /libs/binder/ProcessState.cpp | |
| parent | 3f4fec9c1845f4159cc9797d4283a7bcd7ad8555 (diff) | |
| parent | 68275d7ca0951a6e46563f2578a8098113a32dc7 (diff) | |
Merge "libbinder: remove 32-bit ABI support"
Diffstat (limited to 'libs/binder/ProcessState.cpp')
| -rw-r--r-- | libs/binder/ProcessState.cpp | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/libs/binder/ProcessState.cpp b/libs/binder/ProcessState.cpp index 5f1f50672a..3fa686782a 100644 --- a/libs/binder/ProcessState.cpp +++ b/libs/binder/ProcessState.cpp @@ -104,14 +104,7 @@ bool ProcessState::isVndservicemanagerEnabled() { return access("/vendor/bin/vndservicemanager", R_OK) == 0; } -sp<ProcessState> ProcessState::init(const char *driver, bool requireDefault) -{ -#ifdef BINDER_IPC_32BIT - LOG_ALWAYS_FATAL("32-bit binder IPC is not supported for new devices starting in Android P. If " - "you do need to use this mode, please see b/232423610 or file an issue with " - "AOSP upstream as otherwise this will be removed soon."); -#endif - +sp<ProcessState> ProcessState::init(const char* driver, bool requireDefault) { if (driver == nullptr) { std::lock_guard<std::mutex> l(gProcessMutex); if (gProcess) { |