comparison src/share/vm/runtime/globals.hpp @ 14392:b5c8a61d7fa0

Merge
author kvn
date Fri, 21 Jun 2013 15:56:24 -0700
parents d2907f74462e f2110083203d
children 6cc7093e1341
comparison
equal deleted inserted replaced
14391:d2907f74462e 14392:b5c8a61d7fa0
2308 \ 2308 \
2309 product(bool, PrintJNIGCStalls, false, \ 2309 product(bool, PrintJNIGCStalls, false, \
2310 "Print diagnostic message when GC is stalled" \ 2310 "Print diagnostic message when GC is stalled" \
2311 "by JNI critical section") \ 2311 "by JNI critical section") \
2312 \ 2312 \
2313 experimental(double, ObjectCountCutOffPercent, 0.5, \
2314 "The percentage of the used heap that the instances of a class " \
2315 "must occupy for the class to generate a trace event.") \
2316 \
2313 /* GC log rotation setting */ \ 2317 /* GC log rotation setting */ \
2314 \ 2318 \
2315 product(bool, UseGCLogFileRotation, false, \ 2319 product(bool, UseGCLogFileRotation, false, \
2316 "Prevent large gclog file for long running app. " \ 2320 "Prevent large gclog file for long running app. " \
2317 "Requires -Xloggc:<filename>") \ 2321 "Requires -Xloggc:<filename>") \
3686 "Override the default location of the CDS archive file") \ 3690 "Override the default location of the CDS archive file") \
3687 \ 3691 \
3688 experimental(uintx, ArrayAllocatorMallocLimit, \ 3692 experimental(uintx, ArrayAllocatorMallocLimit, \
3689 SOLARIS_ONLY(64*K) NOT_SOLARIS(max_uintx), \ 3693 SOLARIS_ONLY(64*K) NOT_SOLARIS(max_uintx), \
3690 "Allocation less than this value will be allocated " \ 3694 "Allocation less than this value will be allocated " \
3691 "using malloc. Larger allocations will use mmap.") 3695 "using malloc. Larger allocations will use mmap.") \
3696 \
3697 product(bool, EnableTracing, false, \
3698 "Enable event-based tracing") \
3699 product(bool, UseLockedTracing, false, \
3700 "Use locked-tracing when doing event-based tracing")
3701
3692 3702
3693 /* 3703 /*
3694 * Macros for factoring of globals 3704 * Macros for factoring of globals
3695 */ 3705 */
3696 3706