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

Commit 202a83d4 authored by Jing Ji's avatar Jing Ji Committed by Automerger Merge Worker
Browse files

Merge "Clear the pending app freezer task if it's killed." into sc-dev am: 6c524b8a

Original change: https://googleplex-android-review.googlesource.com/c/platform/frameworks/base/+/14143756

Change-Id: I9aeebbbb4dda2c788206693db3dd72afff10ceb9
parents 3af5184b 6c524b8a
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -11501,6 +11501,9 @@ public class ActivityManagerService extends IActivityManager.Stub
            // and it's not isolated, as we'd need the signal to bookkeeping the dying process list.
            restart = app.onCleanupApplicationRecordLSP(mProcessStats, allowRestart,
                    fromBinderDied || app.isolated /* unlinkDeath */);
            // Cancel pending frozen task if there is any.
            mOomAdjuster.mCachedAppOptimizer.unscheduleFreezeAppLSP(app);
        }
        mAppProfiler.onCleanupApplicationRecordLocked(app);
        skipCurrentReceiverLocked(app);
+10 −0
Original line number Diff line number Diff line
@@ -974,6 +974,16 @@ public final class CachedAppOptimizer {
        }
    }

    /**
     * To be called when the given app is killed.
     */
    @GuardedBy({"mAm", "mProcLock"})
    void unscheduleFreezeAppLSP(ProcessRecord app) {
        if (mUseFreezer) {
            mFreezeHandler.removeMessages(SET_FROZEN_PROCESS_MSG, app);
        }
    }

    @VisibleForTesting
    static final class LastCompactionStats {
        private final long[] mRssAfterCompaction;