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

Commit 4afad11a authored by Dianne Hackborn's avatar Dianne Hackborn Committed by Android (Google) Code Review
Browse files

Merge "Fix issue #27289462: Alarm clock not working on NRC49C" into nyc-dev

parents 11007fa3 99fbf926
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -12291,10 +12291,11 @@ public final class ActivityManagerService extends ActivityManagerNative
                                    + " from " + proc.initialIdlePss + ")", true);
                        }
                    }
                } else if (proc.setProcState < ActivityManager.PROCESS_STATE_HOME) {
                } else if (proc.setProcState < ActivityManager.PROCESS_STATE_HOME
                        && proc.setProcState > ActivityManager.PROCESS_STATE_NONEXISTENT) {
                    proc.notCachedSinceIdle = true;
                    proc.initialIdlePss = 0;
                    proc.nextPssTime = ProcessList.computeNextPssTime(proc.curProcState, true,
                    proc.nextPssTime = ProcessList.computeNextPssTime(proc.setProcState, true,
                            mTestPssMode, isSleeping(), now);
                }
            }