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

Commit 45547687 authored by Joe Onorato's avatar Joe Onorato Committed by android-build-merger
Browse files

Merge "Add an event log for when the memfactor changes." into nyc-dev am: a7f46b3c

am: 0c203b9a

* commit '0c203b9a':
  Add an event log for when the memfactor changes.

Change-Id: I1ff7bd592081aacefbbc0b4ae76d944a5b4a60c8
parents aebd7291 0c203b9a
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -20103,6 +20103,9 @@ public final class ActivityManagerService extends ActivityManagerNative
                if (DEBUG_OOM_ADJ) Slog.d(TAG_OOM_ADJ, "Keeping last mem factor!");
            }
        }
        if (memFactor != mLastMemoryLevel) {
            EventLogTags.writeAmMemFactor(memFactor, mLastMemoryLevel);
        }
        mLastMemoryLevel = memFactor;
        mLastNumProcesses = mLruProcesses.size();
        boolean allChanged = mProcessStats.setMemFactorLocked(memFactor, !isSleeping(), now);
+4 −0
Original line number Diff line number Diff line
@@ -108,3 +108,7 @@ option java_package com.android.server.am
30048 am_stop_activity (User|1|5),(Token|1|5),(Component Name|3)
# The activity's onStop has been called.
30049 am_on_stop_called (User|1|5),(Component Name|3),(Reason|3)

# Report changing memory conditions (Values are ProcessStats.ADJ_MEM_FACTOR* constants)
30050 am_mem_factor (Current|1|5),(Previous|1|5)