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

src/share/vm/runtime/globals.hpp

Print this page
rev 3510 : 7116786: RFE: Detailed information on VerifyErrors
Summary: Provide additional detail in VerifyError messages
Reviewed-by:


 812           "Zap unused heap space with 0xBAADBABE")                          \
 813                                                                             \
 814   develop(bool, TraceZapUnusedHeapArea, false,                              \
 815           "Trace zapping of unused heap space")                             \
 816                                                                             \
 817   develop(bool, CheckZapUnusedHeapArea, false,                              \
 818           "Check zapping of unused heap space")                             \
 819                                                                             \
 820   develop(bool, ZapFillerObjects, trueInDebug,                              \
 821           "Zap filler objects with 0xDEAFBABE")                             \
 822                                                                             \
 823   develop(bool, PrintVMMessages, true,                                      \
 824           "Print vm messages on console")                                   \
 825                                                                             \
 826   product(bool, PrintGCApplicationConcurrentTime, false,                    \
 827           "Print the time the application has been running")                \
 828                                                                             \
 829   product(bool, PrintGCApplicationStoppedTime, false,                       \
 830           "Print the time the application has been stopped")                \
 831                                                                             \



 832   notproduct(uintx, ErrorHandlerTest, 0,                                    \
 833           "If > 0, provokes an error after VM initialization; the value"    \
 834           "determines which error to provoke.  See test_error_handler()"    \
 835           "in debug.cpp.")                                                  \
 836                                                                             \
 837   develop(bool, Verbose, false,                                             \
 838           "Prints additional debugging information from other modes")       \
 839                                                                             \
 840   develop(bool, PrintMiscellaneous, false,                                  \
 841           "Prints uncategorized debugging information (requires +Verbose)") \
 842                                                                             \
 843   develop(bool, WizardMode, false,                                          \
 844           "Prints much more debugging information")                         \
 845                                                                             \
 846   product(bool, ShowMessageBoxOnError, false,                               \
 847           "Keep process alive on VM fatal error")                           \
 848                                                                             \
 849   product(bool, CreateMinidumpOnCrash, false,                               \
 850           "Create minidump on VM fatal error")                              \
 851                                                                             \




 812           "Zap unused heap space with 0xBAADBABE")                          \
 813                                                                             \
 814   develop(bool, TraceZapUnusedHeapArea, false,                              \
 815           "Trace zapping of unused heap space")                             \
 816                                                                             \
 817   develop(bool, CheckZapUnusedHeapArea, false,                              \
 818           "Check zapping of unused heap space")                             \
 819                                                                             \
 820   develop(bool, ZapFillerObjects, trueInDebug,                              \
 821           "Zap filler objects with 0xDEAFBABE")                             \
 822                                                                             \
 823   develop(bool, PrintVMMessages, true,                                      \
 824           "Print vm messages on console")                                   \
 825                                                                             \
 826   product(bool, PrintGCApplicationConcurrentTime, false,                    \
 827           "Print the time the application has been running")                \
 828                                                                             \
 829   product(bool, PrintGCApplicationStoppedTime, false,                       \
 830           "Print the time the application has been stopped")                \
 831                                                                             \
 832   diagnostic(bool, VerboseVerification, false,                              \
 833              "Display detailed verification details")                       \
 834                                                                             \
 835   notproduct(uintx, ErrorHandlerTest, 0,                                    \
 836           "If > 0, provokes an error after VM initialization; the value"    \
 837           "determines which error to provoke.  See test_error_handler()"    \
 838           "in debug.cpp.")                                                  \
 839                                                                             \
 840   develop(bool, Verbose, false,                                             \
 841           "Prints additional debugging information from other modes")       \
 842                                                                             \
 843   develop(bool, PrintMiscellaneous, false,                                  \
 844           "Prints uncategorized debugging information (requires +Verbose)") \
 845                                                                             \
 846   develop(bool, WizardMode, false,                                          \
 847           "Prints much more debugging information")                         \
 848                                                                             \
 849   product(bool, ShowMessageBoxOnError, false,                               \
 850           "Keep process alive on VM fatal error")                           \
 851                                                                             \
 852   product(bool, CreateMinidumpOnCrash, false,                               \
 853           "Create minidump on VM fatal error")                              \
 854                                                                             \


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