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

Commit bcbec20c authored by Treehugger Robot's avatar Treehugger Robot Committed by Automerger Merge Worker
Browse files

Merge "Add comment explaining BpBinder::linkToDeath invalid operation" into...

Merge "Add comment explaining BpBinder::linkToDeath invalid operation" into main am: 4212ea29 am: 93806e1a

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



Change-Id: Idd2ba75fed12813dd397d8d1da2ef67f40f5d977
Signed-off-by: default avatarAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
parents 4a95d2d9 93806e1a
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -445,6 +445,9 @@ status_t BBinder::linkToDeath(
    const sp<DeathRecipient>& /*recipient*/, void* /*cookie*/,
    uint32_t /*flags*/)
{
    // BBinder::linkToDeath is invalid because this process owns this binder.
    // The DeathRecipient is called on BpBinders when the process owning the
    // binder node dies.
    return INVALID_OPERATION;
}