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

src/share/vm/runtime/globals.hpp

Print this page




2996                                                                             \
2997   product(intx, SelfDestructTimer, 0,                                       \
2998           "Will cause VM to terminate after a given time (in minutes) "     \
2999           "(0 means off)")                                                  \
3000                                                                             \
3001   product(intx, MaxJavaStackTraceDepth, 1024,                               \
3002           "Max. no. of lines in the stack trace for Java exceptions "       \
3003           "(0 means all)")                                                  \
3004                                                                             \
3005   NOT_EMBEDDED(diagnostic(intx, GuaranteedSafepointInterval, 1000,          \
3006           "Guarantee a safepoint (at least) every so many milliseconds "    \
3007           "(0 means none)"))                                                \
3008                                                                             \
3009   EMBEDDED_ONLY(product(intx, GuaranteedSafepointInterval, 0,               \
3010           "Guarantee a safepoint (at least) every so many milliseconds "    \
3011           "(0 means none)"))                                                \
3012                                                                             \
3013   product(intx, SafepointTimeoutDelay, 10000,                               \
3014           "Delay in milliseconds for option SafepointTimeout")              \
3015                                                                             \
3016   product(intx, NmethodSweepFraction, 4,                                    \
3017           "Number of invocations of sweeper to cover all nmethods")         \
3018                                                                             \
3019   product(intx, NmethodSweepCheckInterval, 5,                               \
3020           "Compilers wake up every n seconds to possibly sweep nmethods")   \
3021                                                                             \
3022   notproduct(bool, LogSweeper, false,                                       \
3023             "Keep a ring buffer of sweeper activity")                       \
3024                                                                             \
3025   notproduct(intx, SweeperLogEntries, 1024,                                 \
3026             "Number of records in the ring buffer of sweeper activity")     \
3027                                                                             \
3028   notproduct(intx, MemProfilingInterval, 500,                               \
3029           "Time between each invocation of the MemProfiler")                \
3030                                                                             \
3031   develop(intx, MallocCatchPtr, -1,                                         \
3032           "Hit breakpoint when mallocing/freeing this pointer")             \
3033                                                                             \
3034   notproduct(intx, AssertRepeat, 1,                                         \
3035           "number of times to evaluate expression in assert "               \
3036           "(to estimate overhead); only works with -DUSE_REPEATED_ASSERTS") \




2996                                                                             \
2997   product(intx, SelfDestructTimer, 0,                                       \
2998           "Will cause VM to terminate after a given time (in minutes) "     \
2999           "(0 means off)")                                                  \
3000                                                                             \
3001   product(intx, MaxJavaStackTraceDepth, 1024,                               \
3002           "Max. no. of lines in the stack trace for Java exceptions "       \
3003           "(0 means all)")                                                  \
3004                                                                             \
3005   NOT_EMBEDDED(diagnostic(intx, GuaranteedSafepointInterval, 1000,          \
3006           "Guarantee a safepoint (at least) every so many milliseconds "    \
3007           "(0 means none)"))                                                \
3008                                                                             \
3009   EMBEDDED_ONLY(product(intx, GuaranteedSafepointInterval, 0,               \
3010           "Guarantee a safepoint (at least) every so many milliseconds "    \
3011           "(0 means none)"))                                                \
3012                                                                             \
3013   product(intx, SafepointTimeoutDelay, 10000,                               \
3014           "Delay in milliseconds for option SafepointTimeout")              \
3015                                                                             \
3016   product(intx, NmethodSweepFraction, 16,                                    \
3017           "Number of invocations of sweeper to cover all nmethods")         \
3018                                                                             \
3019   product(intx, NmethodSweepCheckInterval, 5,                               \
3020           "Compilers wake up every n seconds to possibly sweep nmethods")   \
3021                                                                             \
3022   notproduct(bool, LogSweeper, false,                                       \
3023             "Keep a ring buffer of sweeper activity")                       \
3024                                                                             \
3025   notproduct(intx, SweeperLogEntries, 1024,                                 \
3026             "Number of records in the ring buffer of sweeper activity")     \
3027                                                                             \
3028   notproduct(intx, MemProfilingInterval, 500,                               \
3029           "Time between each invocation of the MemProfiler")                \
3030                                                                             \
3031   develop(intx, MallocCatchPtr, -1,                                         \
3032           "Hit breakpoint when mallocing/freeing this pointer")             \
3033                                                                             \
3034   notproduct(intx, AssertRepeat, 1,                                         \
3035           "number of times to evaluate expression in assert "               \
3036           "(to estimate overhead); only works with -DUSE_REPEATED_ASSERTS") \


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