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

Commit f1eb9b9a 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

Change-Id: Id8bb44e4d996bcc5137a2695b9d422e7f10d21c9
parents d1c33e3c 921a39fe
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);
}