comparison src/share/vm/runtime/globals.hpp @ 3780:4bf3cbef0b3e

Merge
author jcoomes
date Wed, 06 Jul 2011 08:43:01 -0700
parents f8c9417e3571 04760e41b01e
children eb94b7226b7a faa472957b38
comparison
equal deleted inserted replaced
3760:e2af886d540b 3780:4bf3cbef0b3e
1942 \ 1942 \
1943 develop(uintx, ObjArrayMarkingStride, 512, \ 1943 develop(uintx, ObjArrayMarkingStride, 512, \
1944 "Number of ObjArray elements to push onto the marking stack" \ 1944 "Number of ObjArray elements to push onto the marking stack" \
1945 "before pushing a continuation entry") \ 1945 "before pushing a continuation entry") \
1946 \ 1946 \
1947 notproduct(bool, ExecuteInternalVMTests, false, \
1948 "Enable execution of internal VM tests.") \
1949 \
1947 product_pd(bool, UseTLAB, "Use thread-local object allocation") \ 1950 product_pd(bool, UseTLAB, "Use thread-local object allocation") \
1948 \ 1951 \
1949 product_pd(bool, ResizeTLAB, \ 1952 product_pd(bool, ResizeTLAB, \
1950 "Dynamically resize tlab size for threads") \ 1953 "Dynamically resize tlab size for threads") \
1951 \ 1954 \
2329 "Suppress workaround for libthread GP fault") \ 2332 "Suppress workaround for libthread GP fault") \
2330 \ 2333 \
2331 product(bool, PrintJNIGCStalls, false, \ 2334 product(bool, PrintJNIGCStalls, false, \
2332 "Print diagnostic message when GC is stalled" \ 2335 "Print diagnostic message when GC is stalled" \
2333 "by JNI critical section") \ 2336 "by JNI critical section") \
2337 \
2338 /* GC log rotation setting */ \
2339 \
2340 product(bool, UseGCLogFileRotation, false, \
2341 "Prevent large gclog file for long running app. " \
2342 "Requires -Xloggc:<filename>") \
2343 \
2344 product(uintx, NumberOfGCLogFiles, 0, \
2345 "Number of gclog files in rotation, " \
2346 "Default: 0, no rotation") \
2347 \
2348 product(uintx, GCLogFileSize, 0, \
2349 "GC log file size, Default: 0 bytes, no rotation " \
2350 "Only valid with UseGCLogFileRotation") \
2334 \ 2351 \
2335 /* JVMTI heap profiling */ \ 2352 /* JVMTI heap profiling */ \
2336 \ 2353 \
2337 diagnostic(bool, TraceJVMTIObjectTagging, false, \ 2354 diagnostic(bool, TraceJVMTIObjectTagging, false, \
2338 "Trace JVMTI object tagging calls") \ 2355 "Trace JVMTI object tagging calls") \