Merge "Fix a regression in setting oom_adj for cached processes" into qt-dev

am: 4025715b3e

Change-Id: Ic9f15ba600f34307d31c88eb11017e5a59f79ea8
This commit is contained in:
Amith Yamasani
2019-06-26 20:05:43 -07:00
committed by android-build-merger

View File

@@ -431,7 +431,7 @@ public final class OomAdjuster {
for (int i = 0; i < N; i++) {
ProcessRecord app = mProcessList.mLruProcesses.get(i);
if (!app.killedByAm && app.thread != null && app.containsCycle == true) {
if (computeOomAdjLocked(app, ProcessList.UNKNOWN_ADJ, TOP_APP, true, now,
if (computeOomAdjLocked(app, app.getCurRawAdj(), TOP_APP, true, now,
true)) {
retryCycles = true;
}