src/share/vm/runtime/globals.hpp

changeset 1050
c6c601a0f2d6
parent 1005
dca06e7f503d
child 1063
7bb995fbd3c0
child 1077
660978a2a31a
     1.1 --- a/src/share/vm/runtime/globals.hpp	Fri Feb 27 15:30:47 2009 -0800
     1.2 +++ b/src/share/vm/runtime/globals.hpp	Mon Mar 02 16:37:04 2009 -0800
     1.3 @@ -662,6 +662,12 @@
     1.4    product(ccstrlist, OnOutOfMemoryError, "",                                \
     1.5            "Run user-defined commands on first java.lang.OutOfMemoryError")  \
     1.6                                                                              \
     1.7 +  manageable(bool, HeapDumpBeforeFullGC, false,                             \
     1.8 +          "Dump heap to file before any major stop-world GC")               \
     1.9 +                                                                            \
    1.10 +  manageable(bool, HeapDumpAfterFullGC, false,                              \
    1.11 +          "Dump heap to file after any major stop-world GC")                \
    1.12 +                                                                            \
    1.13    manageable(bool, HeapDumpOnOutOfMemoryError, false,                       \
    1.14            "Dump heap to file when java.lang.OutOfMemoryError is thrown")    \
    1.15                                                                              \
    1.16 @@ -1971,6 +1977,12 @@
    1.17    product(bool, PrintHeapAtSIGBREAK, true,                                  \
    1.18            "Print heap layout in response to SIGBREAK")                      \
    1.19                                                                              \
    1.20 +  manageable(bool, PrintClassHistogramBeforeFullGC, false,                  \
    1.21 +          "Print a class histogram before any major stop-world GC")         \
    1.22 +                                                                            \
    1.23 +  manageable(bool, PrintClassHistogramAfterFullGC, false,                   \
    1.24 +          "Print a class histogram after any major stop-world GC")          \
    1.25 +                                                                            \
    1.26    manageable(bool, PrintClassHistogram, false,                              \
    1.27            "Print a histogram of class instances")                           \
    1.28                                                                              \

mercurial