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

src/share/vm/runtime/globals.hpp

Print this page




2882           "Max. no. of lines in the stack trace for Java exceptions "       \
2883           "(0 means all)")                                                  \
2884                                                                             \
2885   NOT_EMBEDDED(diagnostic(intx, GuaranteedSafepointInterval, 1000,          \
2886           "Guarantee a safepoint (at least) every so many milliseconds "    \
2887           "(0 means none)"))                                                \
2888                                                                             \
2889   EMBEDDED_ONLY(product(intx, GuaranteedSafepointInterval, 0,               \
2890           "Guarantee a safepoint (at least) every so many milliseconds "    \
2891           "(0 means none)"))                                                \
2892                                                                             \
2893   product(intx, SafepointTimeoutDelay, 10000,                               \
2894           "Delay in milliseconds for option SafepointTimeout")              \
2895                                                                             \
2896   product(intx, NmethodSweepFraction, 4,                                    \
2897           "Number of invocations of sweeper to cover all nmethods")         \
2898                                                                             \
2899   product(intx, NmethodSweepCheckInterval, 5,                               \
2900           "Compilers wake up every n seconds to possibly sweep nmethods")   \
2901                                                                             \






2902   notproduct(intx, MemProfilingInterval, 500,                               \
2903           "Time between each invocation of the MemProfiler")                \
2904                                                                             \
2905   develop(intx, MallocCatchPtr, -1,                                         \
2906           "Hit breakpoint when mallocing/freeing this pointer")             \
2907                                                                             \
2908   notproduct(intx, AssertRepeat, 1,                                         \
2909           "number of times to evaluate expression in assert "               \
2910           "(to estimate overhead); only works with -DUSE_REPEATED_ASSERTS") \
2911                                                                             \
2912   notproduct(ccstrlist, SuppressErrorAt, "",                                \
2913           "List of assertions (file:line) to muzzle")                       \
2914                                                                             \
2915   notproduct(uintx, HandleAllocationLimit, 1024,                            \
2916           "Threshold for HandleMark allocation when +TraceHandleAllocation "\
2917           "is used")                                                        \
2918                                                                             \
2919   develop(uintx, TotalHandleAllocationLimit, 1024,                          \
2920           "Threshold for total handle allocation when "                     \
2921           "+TraceHandleAllocation is used")                                 \




2882           "Max. no. of lines in the stack trace for Java exceptions "       \
2883           "(0 means all)")                                                  \
2884                                                                             \
2885   NOT_EMBEDDED(diagnostic(intx, GuaranteedSafepointInterval, 1000,          \
2886           "Guarantee a safepoint (at least) every so many milliseconds "    \
2887           "(0 means none)"))                                                \
2888                                                                             \
2889   EMBEDDED_ONLY(product(intx, GuaranteedSafepointInterval, 0,               \
2890           "Guarantee a safepoint (at least) every so many milliseconds "    \
2891           "(0 means none)"))                                                \
2892                                                                             \
2893   product(intx, SafepointTimeoutDelay, 10000,                               \
2894           "Delay in milliseconds for option SafepointTimeout")              \
2895                                                                             \
2896   product(intx, NmethodSweepFraction, 4,                                    \
2897           "Number of invocations of sweeper to cover all nmethods")         \
2898                                                                             \
2899   product(intx, NmethodSweepCheckInterval, 5,                               \
2900           "Compilers wake up every n seconds to possibly sweep nmethods")   \
2901                                                                             \
2902   notproduct(bool, LogSweeper, false,                                       \
2903             "Keep a ring buffer of sweeper activity")                       \
2904                                                                             \
2905   notproduct(intx, SweeperLogEntries, 1024,                                 \
2906             "Number of records in the ring buffer of sweeper activity")     \
2907                                                                             \
2908   notproduct(intx, MemProfilingInterval, 500,                               \
2909           "Time between each invocation of the MemProfiler")                \
2910                                                                             \
2911   develop(intx, MallocCatchPtr, -1,                                         \
2912           "Hit breakpoint when mallocing/freeing this pointer")             \
2913                                                                             \
2914   notproduct(intx, AssertRepeat, 1,                                         \
2915           "number of times to evaluate expression in assert "               \
2916           "(to estimate overhead); only works with -DUSE_REPEATED_ASSERTS") \
2917                                                                             \
2918   notproduct(ccstrlist, SuppressErrorAt, "",                                \
2919           "List of assertions (file:line) to muzzle")                       \
2920                                                                             \
2921   notproduct(uintx, HandleAllocationLimit, 1024,                            \
2922           "Threshold for HandleMark allocation when +TraceHandleAllocation "\
2923           "is used")                                                        \
2924                                                                             \
2925   develop(uintx, TotalHandleAllocationLimit, 1024,                          \
2926           "Threshold for total handle allocation when "                     \
2927           "+TraceHandleAllocation is used")                                 \


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