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

Commit cb36f09e authored by Linux Build Service Account's avatar Linux Build Service Account Committed by Gerrit - the friendly Code Review server
Browse files

Merge "frameworks/base: Make minfree values aggressive for 32bit devices"

parents 6aa6a502 8c2ffb5d
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -202,13 +202,13 @@ final class ProcessList {

    // These are the low-end OOM level limits for 32bit 1 GB RAM
    private final int[] mOomMinFreeLow32Bit = new int[] {
            8192, 12288, 16384,
            24576, 28672, 32768
            12288, 18432, 24576,
            36864, 43008, 49152
    };
    // These are the high-end OOM level limits for 32bit 1 GB RAM
    private final int[] mOomMinFreeHigh32Bit = new int[] {
            49152, 61440, 73728,
            86016, 98304, 122880
            73728, 92160, 110592,
            129024, 177012, 227012
    };
    // These are the low-end OOM level limits.  This is appropriate for an
    // HVGA or smaller phone with less than 512MB.  Values are in KB.