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

Commit 5d02a1f7 authored by Lorenzo Colitti's avatar Lorenzo Colitti Committed by android-build-merger
Browse files

Merge "libbinder_ndk: R system users can run on Q devices" am: 0d838729 am: 921a39fe

am: f1eb9b9a

Change-Id: Iad8984a0438a265cb8103a54a4f2ad6c1b386ac6
parents 1256e378 f1eb9b9a
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -56,9 +56,11 @@ enum {
/**
 * This interface has the stability of the system image.
 */
void AIBinder_markSystemStability(AIBinder* binder);
__attribute__((weak)) void AIBinder_markSystemStability(AIBinder* binder);

static inline void AIBinder_markCompilationUnitStability(AIBinder* binder) {
    if (AIBinder_markSystemStability == nullptr) return;

    AIBinder_markSystemStability(binder);
}