Loading services/core/java/com/android/server/am/OomAdjuster.java +2 −2 Original line number Diff line number Diff line Loading @@ -412,14 +412,14 @@ public final class OomAdjuster { mNumCachedHiddenProcs++; numCached++; if (app.connectionGroup != 0) { if (lastCachedGroupUid == app.uid if (lastCachedGroupUid == app.info.uid && lastCachedGroup == app.connectionGroup) { // If this process is the next in the same group, we don't // want it to count against our limit of the number of cached // processes, so bump up the group count to account for it. numCachedExtraGroup++; } else { lastCachedGroupUid = app.uid; lastCachedGroupUid = app.info.uid; lastCachedGroup = app.connectionGroup; } } else { Loading Loading
services/core/java/com/android/server/am/OomAdjuster.java +2 −2 Original line number Diff line number Diff line Loading @@ -412,14 +412,14 @@ public final class OomAdjuster { mNumCachedHiddenProcs++; numCached++; if (app.connectionGroup != 0) { if (lastCachedGroupUid == app.uid if (lastCachedGroupUid == app.info.uid && lastCachedGroup == app.connectionGroup) { // If this process is the next in the same group, we don't // want it to count against our limit of the number of cached // processes, so bump up the group count to account for it. numCachedExtraGroup++; } else { lastCachedGroupUid = app.uid; lastCachedGroupUid = app.info.uid; lastCachedGroup = app.connectionGroup; } } else { Loading