Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit f77d0495 authored by Steven Moreland's avatar Steven Moreland Committed by Automerger Merge Worker
Browse files

Merge "Warn about deletion of 32-bit binder IPC ABI." am: e9ebcc6c am:...

Merge "Warn about deletion of 32-bit binder IPC ABI." am: e9ebcc6c am: 5f982c60 am: e4632d9d am: 9724a961

Original change: https://android-review.googlesource.com/c/platform/frameworks/native/+/2097848



Change-Id: Ia7c587f8cf5abe5a2784e46d19d9d5837380b3bb
Signed-off-by: default avatarAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
parents 3d01fb4f 9724a961
Loading
Loading
Loading
Loading
+5 −0
Original line number Diff line number Diff line
@@ -100,6 +100,11 @@ static void verifyNotForked(bool forked) {

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

    if (driver == nullptr) {
        std::lock_guard<std::mutex> l(gProcessMutex);