diff options
author | Mathieu Chartier <mathieuc@google.com> | 2015-03-18 18:54:36 -0700 |
---|---|---|
committer | Mathieu Chartier <mathieuc@google.com> | 2015-03-18 19:07:02 -0700 |
commit | 1fb7aab9b235fa526a1b8e6e2efd71c7df66096d (patch) | |
tree | 3e3e15760ae88efccf612918ab2f8bc3630e2a79 /core | |
parent | e921b8a28f0d5b69fbb30374241c62fa90e92013 (diff) | |
download | frameworks_base-1fb7aab9b235fa526a1b8e6e2efd71c7df66096d.zip frameworks_base-1fb7aab9b235fa526a1b8e6e2efd71c7df66096d.tar.gz frameworks_base-1fb7aab9b235fa526a1b8e6e2efd71c7df66096d.tar.bz2 |
Revert "Change jit properties to be debug properties"
Bug: 19735273
This reverts commit 1ad10ef1e4b83ef9e845761a82e202bb57e2379d.
Change-Id: Iac930925ab6d5cd5947fa4077c8d93e2984927d5
Diffstat (limited to 'core')
-rw-r--r-- | core/jni/AndroidRuntime.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/core/jni/AndroidRuntime.cpp b/core/jni/AndroidRuntime.cpp index 516bb65..ce50d96 100644 --- a/core/jni/AndroidRuntime.cpp +++ b/core/jni/AndroidRuntime.cpp @@ -648,9 +648,9 @@ int AndroidRuntime::startVm(JavaVM** pJavaVM, JNIEnv** pEnv) /* * JIT related options. */ - parseRuntimeOption("debug.dalvik.vm.usejit", usejitOptsBuf, "-Xusejit:"); - parseRuntimeOption("debug.dalvik.vm.jitcodecachesize", jitcodecachesizeOptsBuf, "-Xjitcodecachesize:"); - parseRuntimeOption("debug.dalvik.vm.jitthreshold", jitthresholdOptsBuf, "-Xjitthreshold:"); + parseRuntimeOption("dalvik.vm.usejit", usejitOptsBuf, "-Xusejit:"); + parseRuntimeOption("dalvik.vm.jitcodecachesize", jitcodecachesizeOptsBuf, "-Xjitcodecachesize:"); + parseRuntimeOption("dalvik.vm.jitthreshold", jitthresholdOptsBuf, "-Xjitthreshold:"); property_get("ro.config.low_ram", propBuf, ""); if (strcmp(propBuf, "true") == 0) { |