< prev index next >

src/share/vm/runtime/globals.hpp

Print this page
rev 7905 : 8074552:  SafeFetch32 and SafeFetchN do not work in error handling
Summary: handle SafeFetch faults in secondary signal handlers
Contributed-by: Thomas Stuefe


 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)")                 \




 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   notproduct(bool, TestSafeFetchInErrorHandler, false,                      \
 913           "If true, tests SafeFetch inside error handler.")                 \
 914                                                                             \
 915   develop(bool, Verbose, false,                                             \
 916           "Print additional debugging information from other modes")        \
 917                                                                             \
 918   develop(bool, PrintMiscellaneous, false,                                  \
 919           "Print uncategorized debugging information (requires +Verbose)")  \
 920                                                                             \
 921   develop(bool, WizardMode, false,                                          \
 922           "Print much more debugging information")                          \
 923                                                                             \
 924   product(bool, ShowMessageBoxOnError, false,                               \
 925           "Keep process alive on VM fatal error")                           \
 926                                                                             \
 927   product(bool, CreateMinidumpOnCrash, false,                               \
 928           "Create minidump on VM fatal error")                              \
 929                                                                             \
 930   product_pd(bool, UseOSErrorReporting,                                     \
 931           "Let VM fatal error propagate to the OS (ie. WER on Windows)")    \
 932                                                                             \
 933   product(bool, SuppressFatalErrorMessage, false,                           \
 934           "Report NO fatal error message (avoid deadlock)")                 \


< prev index next >