diff options
| author | 2018-11-22 12:50:10 +0000 | |
|---|---|---|
| committer | 2018-11-22 12:54:43 +0000 | |
| commit | 0f93bab4bdff16a3df39db2217363439219949df (patch) | |
| tree | 483331590cb84a997b51433cd904726a0c3a6605 | |
| parent | a5c84f29809f10855add6e66c0649b3a601f9f45 (diff) | |
Temporarily exclude zygote
zygote is excluded from NativeProcessMemoryState to investigate whether
the unexpected values reported in the atom are due to its forking.
Test: atest UidAtomTests#testNativeProcessMemoryState
Change-Id: I9e29955d9931ac19c49d0ee18a5245a40034486f
| -rw-r--r-- | services/core/java/com/android/server/stats/StatsCompanionService.java | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/services/core/java/com/android/server/stats/StatsCompanionService.java b/services/core/java/com/android/server/stats/StatsCompanionService.java index d2ca85023fe8..72d3ea6850d6 100644 --- a/services/core/java/com/android/server/stats/StatsCompanionService.java +++ b/services/core/java/com/android/server/stats/StatsCompanionService.java @@ -194,8 +194,10 @@ public class StatsCompanionService extends IStatsCompanionService.Stub { "/system/bin/traced", // Perfetto. "/system/bin/traced_probes", // Perfetto. "webview_zygote", - "zygote", - "zygote64", + // Temporarily excluded zygote to investigate its forking consequences in + // NativeProcessMemoryState. + // "zygote", + // "zygote64", }; |