< prev index next >

src/share/vm/runtime/globals.hpp

Print this page
rev 7703 : 8065895 Synchronous signals during error reporting may terminate or hang VM process
Contributed-by: stuefe


 888   develop(bool, ZapFillerObjects, trueInDebug,                              \
 889           "Zap filler objects with 0xDEAFBABE")                             \
 890                                                                             \
 891   develop(bool, PrintVMMessages, true,                                      \
 892           "Print VM messages on console")                                   \
 893                                                                             \
 894   product(bool, PrintGCApplicationConcurrentTime, false,                    \
 895           "Print the time the application has been running")                \
 896                                                                             \
 897   product(bool, PrintGCApplicationStoppedTime, false,                       \
 898           "Print the time the application has been stopped")                \
 899                                                                             \
 900   diagnostic(bool, VerboseVerification, false,                              \
 901           "Display detailed verification details")                          \
 902                                                                             \
 903   notproduct(uintx, ErrorHandlerTest, 0,                                    \
 904           "If > 0, provokes an error after VM initialization; the value "   \
 905           "determines which error to provoke. See test_error_handler() "    \
 906           "in debug.cpp.")                                                  \
 907                                                                             \




 908   develop(bool, Verbose, false,                                             \
 909           "Print additional debugging information from other modes")        \
 910                                                                             \
 911   develop(bool, PrintMiscellaneous, false,                                  \
 912           "Print uncategorized debugging information (requires +Verbose)")  \
 913                                                                             \
 914   develop(bool, WizardMode, false,                                          \
 915           "Print much more debugging information")                          \
 916                                                                             \
 917   product(bool, ShowMessageBoxOnError, false,                               \
 918           "Keep process alive on VM fatal error")                           \
 919                                                                             \
 920   product(bool, CreateMinidumpOnCrash, false,                               \
 921           "Create minidump on VM fatal error")                              \
 922                                                                             \
 923   product_pd(bool, UseOSErrorReporting,                                     \
 924           "Let VM fatal error propagate to the OS (ie. WER on Windows)")    \
 925                                                                             \
 926   product(bool, SuppressFatalErrorMessage, false,                           \
 927           "Report NO fatal error message (avoid deadlock)")                 \




 888   develop(bool, ZapFillerObjects, trueInDebug,                              \
 889           "Zap filler objects with 0xDEAFBABE")                             \
 890                                                                             \
 891   develop(bool, PrintVMMessages, true,                                      \
 892           "Print VM messages on console")                                   \
 893                                                                             \
 894   product(bool, PrintGCApplicationConcurrentTime, false,                    \
 895           "Print the time the application has been running")                \
 896                                                                             \
 897   product(bool, PrintGCApplicationStoppedTime, false,                       \
 898           "Print the time the application has been stopped")                \
 899                                                                             \
 900   diagnostic(bool, VerboseVerification, false,                              \
 901           "Display detailed verification details")                          \
 902                                                                             \
 903   notproduct(uintx, ErrorHandlerTest, 0,                                    \
 904           "If > 0, provokes an error after VM initialization; the value "   \
 905           "determines which error to provoke. See test_error_handler() "    \
 906           "in debug.cpp.")                                                  \
 907                                                                             \
 908   notproduct(uintx, TestCrashInErrorHandler, 0,                             \
 909           "If > 0, provokes an error inside VM error handler (a secondary " \
 910           "crash). see test_error_handler() in debug.cpp.")                 \
 911                                                                             \
 912   develop(bool, Verbose, false,                                             \
 913           "Print additional debugging information from other modes")        \
 914                                                                             \
 915   develop(bool, PrintMiscellaneous, false,                                  \
 916           "Print uncategorized debugging information (requires +Verbose)")  \
 917                                                                             \
 918   develop(bool, WizardMode, false,                                          \
 919           "Print much more debugging information")                          \
 920                                                                             \
 921   product(bool, ShowMessageBoxOnError, false,                               \
 922           "Keep process alive on VM fatal error")                           \
 923                                                                             \
 924   product(bool, CreateMinidumpOnCrash, false,                               \
 925           "Create minidump on VM fatal error")                              \
 926                                                                             \
 927   product_pd(bool, UseOSErrorReporting,                                     \
 928           "Let VM fatal error propagate to the OS (ie. WER on Windows)")    \
 929                                                                             \
 930   product(bool, SuppressFatalErrorMessage, false,                           \
 931           "Report NO fatal error message (avoid deadlock)")                 \


< prev index next >