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

Commit 67a4d32c authored by Mathieu Chartier's avatar Mathieu Chartier Committed by Android (Google) Code Review
Browse files

Merge "Launch VM with -XX:LowMemoryMode if ro.config.low_ram is "true"." into klp-dev

parents 6b223c6a e6c2241f
Loading
Loading
Loading
Loading
+6 −0
Original line number Original line Diff line number Diff line
@@ -589,6 +589,12 @@ int AndroidRuntime::startVm(JavaVM** pJavaVM, JNIEnv** pEnv)
        mOptions.add(opt);
        mOptions.add(opt);
    }
    }


    property_get("ro.config.low_ram", propBuf, "");
    if (strcmp(propBuf, "true") == 0) {
      opt.optionString = "-XX:LowMemoryMode";
      mOptions.add(opt);
    }

    /*
    /*
     * Enable or disable dexopt features, such as bytecode verification and
     * Enable or disable dexopt features, such as bytecode verification and
     * calculation of register maps for precise GC.
     * calculation of register maps for precise GC.