src/share/vm/runtime/globals.hpp

changeset 6442
b5c8a61d7fa0
parent 6441
d2907f74462e
parent 5237
f2110083203d
child 6454
6cc7093e1341
     1.1 --- a/src/share/vm/runtime/globals.hpp	Thu Jun 20 16:30:44 2013 -0700
     1.2 +++ b/src/share/vm/runtime/globals.hpp	Fri Jun 21 15:56:24 2013 -0700
     1.3 @@ -2310,6 +2310,10 @@
     1.4            "Print diagnostic message when GC is stalled"                     \
     1.5            "by JNI critical section")                                        \
     1.6                                                                              \
     1.7 +  experimental(double, ObjectCountCutOffPercent, 0.5,                       \
     1.8 +          "The percentage of the used heap that the instances of a class "  \
     1.9 +          "must occupy for the class to generate a trace event.")           \
    1.10 +                                                                            \
    1.11    /* GC log rotation setting */                                             \
    1.12                                                                              \
    1.13    product(bool, UseGCLogFileRotation, false,                                \
    1.14 @@ -3688,7 +3692,13 @@
    1.15    experimental(uintx, ArrayAllocatorMallocLimit,                            \
    1.16            SOLARIS_ONLY(64*K) NOT_SOLARIS(max_uintx),                        \
    1.17            "Allocation less than this value will be allocated "              \
    1.18 -          "using malloc. Larger allocations will use mmap.")
    1.19 +          "using malloc. Larger allocations will use mmap.")                \
    1.20 +                                                                            \
    1.21 +  product(bool, EnableTracing, false,                                       \
    1.22 +          "Enable event-based tracing")                                     \
    1.23 +  product(bool, UseLockedTracing, false,                                    \
    1.24 +          "Use locked-tracing when doing event-based tracing")
    1.25 +
    1.26  
    1.27  /*
    1.28   *  Macros for factoring of globals

mercurial