< prev index next >

src/hotspot/share/runtime/globals.hpp

Print this page
rev 50375 : [mq]: 8195097-stringtable-v2

@@ -2543,12 +2543,13 @@
                                                                             \
   product(bool, RelaxAccessControlCheck, false,                             \
           "Relax the access control checks in the verifier")                \
                                                                             \
   product(uintx, StringTableSize, defaultStringTableSize,                   \
-          "Number of buckets in the interned String table")                 \
-          range(minimumStringTableSize, 111*defaultStringTableSize)         \
+          "Number of buckets in the interned String table "                 \
+          "(will be rounded to nearest higher power of 2)")                 \
+          range(minimumStringTableSize, 16777216ul)                         \
                                                                             \
   experimental(uintx, SymbolTableSize, defaultSymbolTableSize,              \
           "Number of buckets in the JVM internal Symbol table")             \
           range(minimumSymbolTableSize, 111*defaultSymbolTableSize)         \
                                                                             \
< prev index next >