src/share/vm/runtime/globals.hpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File classpath.03 Sdiff src/share/vm/runtime

src/share/vm/runtime/globals.hpp

Print this page




2392           "Deprecated, use -Xlog:gc instead.")                              \
2393                                                                             \
2394   product(bool, PrintGCDetails, false,                                      \
2395           "Print more details at garbage collection. "                      \
2396           "Deprecated, use -Xlog:gc* instead.")                             \
2397                                                                             \
2398   develop(intx, ConcGCYieldTimeout, 0,                                      \
2399           "If non-zero, assert that GC threads yield within this "          \
2400           "number of milliseconds")                                         \
2401           range(0, max_intx)                                                \
2402                                                                             \
2403   develop(bool, TraceFinalizerRegistration, false,                          \
2404           "Trace registration of final references")                         \
2405                                                                             \
2406   notproduct(bool, TraceScavenge, false,                                    \
2407           "Trace scavenge")                                                 \
2408                                                                             \
2409   product(bool, IgnoreEmptyClassPaths, false,                               \
2410           "Ignore empty path elements in -classpath")                       \
2411                                                                             \
2412   product(bool, TraceClassPaths, false,                                     \
2413           "Trace processing of class paths")                                \
2414                                                                             \
2415   product(bool, TraceClassLoadingPreorder, false,                           \
2416           "Trace all classes loaded in order referenced (not loaded)")      \
2417                                                                             \
2418   product_rw(bool, TraceLoaderConstraints, false,                           \
2419           "Trace loader constraints")                                       \
2420                                                                             \
2421   product(size_t, InitialBootClassLoaderMetaspaceSize,                      \
2422           NOT_LP64(2200*K) LP64_ONLY(4*M),                                  \
2423           "Initial size of the boot class loader data metaspace")           \
2424           range(30*K, max_uintx/BytesPerWord)                               \
2425           constraint(InitialBootClassLoaderMetaspaceSizeConstraintFunc, AfterErgo)\
2426                                                                             \
2427   product(bool, TraceYoungGenTime, false,                                   \
2428           "Trace accumulated time for young collection")                    \
2429                                                                             \
2430   product(bool, TraceOldGenTime, false,                                     \
2431           "Trace accumulated time for old collection")                      \
2432                                                                             \
2433   product(bool, PrintHeapAtSIGBREAK, true,                                  \
2434           "Print heap layout in response to SIGBREAK")                      \




2392           "Deprecated, use -Xlog:gc instead.")                              \
2393                                                                             \
2394   product(bool, PrintGCDetails, false,                                      \
2395           "Print more details at garbage collection. "                      \
2396           "Deprecated, use -Xlog:gc* instead.")                             \
2397                                                                             \
2398   develop(intx, ConcGCYieldTimeout, 0,                                      \
2399           "If non-zero, assert that GC threads yield within this "          \
2400           "number of milliseconds")                                         \
2401           range(0, max_intx)                                                \
2402                                                                             \
2403   develop(bool, TraceFinalizerRegistration, false,                          \
2404           "Trace registration of final references")                         \
2405                                                                             \
2406   notproduct(bool, TraceScavenge, false,                                    \
2407           "Trace scavenge")                                                 \
2408                                                                             \
2409   product(bool, IgnoreEmptyClassPaths, false,                               \
2410           "Ignore empty path elements in -classpath")                       \
2411                                                                             \



2412   product(bool, TraceClassLoadingPreorder, false,                           \
2413           "Trace all classes loaded in order referenced (not loaded)")      \
2414                                                                             \
2415   product_rw(bool, TraceLoaderConstraints, false,                           \
2416           "Trace loader constraints")                                       \
2417                                                                             \
2418   product(size_t, InitialBootClassLoaderMetaspaceSize,                      \
2419           NOT_LP64(2200*K) LP64_ONLY(4*M),                                  \
2420           "Initial size of the boot class loader data metaspace")           \
2421           range(30*K, max_uintx/BytesPerWord)                               \
2422           constraint(InitialBootClassLoaderMetaspaceSizeConstraintFunc, AfterErgo)\
2423                                                                             \
2424   product(bool, TraceYoungGenTime, false,                                   \
2425           "Trace accumulated time for young collection")                    \
2426                                                                             \
2427   product(bool, TraceOldGenTime, false,                                     \
2428           "Trace accumulated time for old collection")                      \
2429                                                                             \
2430   product(bool, PrintHeapAtSIGBREAK, true,                                  \
2431           "Print heap layout in response to SIGBREAK")                      \


src/share/vm/runtime/globals.hpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File