Loading core/java/com/android/internal/os/KernelCpuThreadReader.java +2 −3 Original line number Original line Diff line number Diff line Loading @@ -103,10 +103,9 @@ public class KernelCpuThreadReader { /** /** * Default predicate for what UIDs to check for when getting processes. This filters to only * Default predicate for what UIDs to check for when getting processes. This filters to only * select system UIDs (1000-1999) * select UID 1000 (the {@code system} user) */ */ private static final Predicate<Integer> DEFAULT_UID_PREDICATE = private static final Predicate<Integer> DEFAULT_UID_PREDICATE = uid -> uid == 1000; uid -> 1000 <= uid && uid < 2000; /** /** * Do not report any threads that have a total CPU usage (across all frequencies) less than or * Do not report any threads that have a total CPU usage (across all frequencies) less than or Loading Loading
core/java/com/android/internal/os/KernelCpuThreadReader.java +2 −3 Original line number Original line Diff line number Diff line Loading @@ -103,10 +103,9 @@ public class KernelCpuThreadReader { /** /** * Default predicate for what UIDs to check for when getting processes. This filters to only * Default predicate for what UIDs to check for when getting processes. This filters to only * select system UIDs (1000-1999) * select UID 1000 (the {@code system} user) */ */ private static final Predicate<Integer> DEFAULT_UID_PREDICATE = private static final Predicate<Integer> DEFAULT_UID_PREDICATE = uid -> uid == 1000; uid -> 1000 <= uid && uid < 2000; /** /** * Do not report any threads that have a total CPU usage (across all frequencies) less than or * Do not report any threads that have a total CPU usage (across all frequencies) less than or Loading