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

Commit a7f46b3c authored by Joe Onorato's avatar Joe Onorato Committed by Android (Google) Code Review
Browse files

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

parents 4c4afedf 1dbff801
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)