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

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

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

parents 6c65610f 4212ea29
Loading
Loading
Loading
Loading
+3 −0
Original line number Original line Diff line number Diff line
@@ -445,6 +445,9 @@ status_t BBinder::linkToDeath(
    const sp<DeathRecipient>& /*recipient*/, void* /*cookie*/,
    const sp<DeathRecipient>& /*recipient*/, void* /*cookie*/,
    uint32_t /*flags*/)
    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;
    return INVALID_OPERATION;
}
}