summaryrefslogtreecommitdiffstats
path: root/libart
diff options
context:
space:
mode:
authorCalin Juravle <calin@google.com>2014-08-19 18:43:02 +0100
committerCalin Juravle <calin@google.com>2014-08-26 19:01:43 +0100
commit371d2b005a4c1769e10179ccaaedd67e6a4946da (patch)
tree2e98297c14b3325b6da63f3bda2a8d91a2d8bf28 /libart
parent73157cacca0948d867a38c4fb91c9b4193bc3ee6 (diff)
downloadlibcore-371d2b005a4c1769e10179ccaaedd67e6a4946da.zip
libcore-371d2b005a4c1769e10179ccaaedd67e6a4946da.tar.gz
libcore-371d2b005a4c1769e10179ccaaedd67e6a4946da.tar.bz2
Make explicit that ISA names are used in some sys properties
Change-Id: I0620c33972e061ba18504579430d2ac02656d17a
Diffstat (limited to 'libart')
-rw-r--r--libart/src/main/java/dalvik/system/VMRuntime.java4
1 files changed, 4 insertions, 0 deletions
diff --git a/libart/src/main/java/dalvik/system/VMRuntime.java b/libart/src/main/java/dalvik/system/VMRuntime.java
index a905c71..fca64c7 100644
--- a/libart/src/main/java/dalvik/system/VMRuntime.java
+++ b/libart/src/main/java/dalvik/system/VMRuntime.java
@@ -33,6 +33,10 @@ public final class VMRuntime {
*/
private static final VMRuntime THE_ONE = new VMRuntime();
+ // Note: Instruction set names are used to construct the names of some
+ // system properties. To be sure that the properties stay valid the
+ // instruction set name should not exceed 7 characters. See installd
+ // and the package manager for the actual propeties.
private static final Map<String, String> ABI_TO_INSTRUCTION_SET_MAP
= new HashMap<String, String>();
static {