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

Commit 921a39fe 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

Change-Id: I06af432aa4e36e3fd0c6d458c2189d351c194cf3
parents cdb8facd 0d838729
Loading
Loading
Loading
Loading
+3 −1
Original line number Original line Diff line number Diff line
@@ -56,9 +56,11 @@ enum {
/**
/**
 * This interface has the stability of the system image.
 * 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) {
static inline void AIBinder_markCompilationUnitStability(AIBinder* binder) {
    if (AIBinder_markSystemStability == nullptr) return;

    AIBinder_markSystemStability(binder);
    AIBinder_markSystemStability(binder);
}
}