< prev index next >

src/share/vm/runtime/globals.hpp

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


 904           "Print VM messages on console")                                   \
 905                                                                             \
 906   product(bool, PrintGCApplicationConcurrentTime, false,                    \
 907           "Print the time the application has been running")                \
 908                                                                             \
 909   product(bool, PrintGCApplicationStoppedTime, false,                       \
 910           "Print the time the application has been stopped")                \
 911                                                                             \
 912   diagnostic(bool, VerboseVerification, false,                              \
 913           "Display detailed verification details")                          \
 914                                                                             \
 915   notproduct(uintx, ErrorHandlerTest, 0,                                    \
 916           "If > 0, provokes an error after VM initialization; the value "   \
 917           "determines which error to provoke. See test_error_handler() "    \
 918           "in debug.cpp.")                                                  \
 919                                                                             \
 920   notproduct(uintx, TestCrashInErrorHandler, 0,                             \
 921           "If > 0, provokes an error inside VM error handler (a secondary " \
 922           "crash). see test_error_handler() in debug.cpp.")                 \
 923                                                                             \



 924   develop(bool, Verbose, false,                                             \
 925           "Print additional debugging information from other modes")        \
 926                                                                             \
 927   develop(bool, PrintMiscellaneous, false,                                  \
 928           "Print uncategorized debugging information (requires +Verbose)")  \
 929                                                                             \
 930   develop(bool, WizardMode, false,                                          \
 931           "Print much more debugging information")                          \
 932                                                                             \
 933   product(bool, ShowMessageBoxOnError, false,                               \
 934           "Keep process alive on VM fatal error")                           \
 935                                                                             \
 936   product(bool, CreateMinidumpOnCrash, false,                               \
 937           "Create minidump on VM fatal error")                              \
 938                                                                             \
 939   product_pd(bool, UseOSErrorReporting,                                     \
 940           "Let VM fatal error propagate to the OS (ie. WER on Windows)")    \
 941                                                                             \
 942   product(bool, SuppressFatalErrorMessage, false,                           \
 943           "Report NO fatal error message (avoid deadlock)")                 \




 904           "Print VM messages on console")                                   \
 905                                                                             \
 906   product(bool, PrintGCApplicationConcurrentTime, false,                    \
 907           "Print the time the application has been running")                \
 908                                                                             \
 909   product(bool, PrintGCApplicationStoppedTime, false,                       \
 910           "Print the time the application has been stopped")                \
 911                                                                             \
 912   diagnostic(bool, VerboseVerification, false,                              \
 913           "Display detailed verification details")                          \
 914                                                                             \
 915   notproduct(uintx, ErrorHandlerTest, 0,                                    \
 916           "If > 0, provokes an error after VM initialization; the value "   \
 917           "determines which error to provoke. See test_error_handler() "    \
 918           "in debug.cpp.")                                                  \
 919                                                                             \
 920   notproduct(uintx, TestCrashInErrorHandler, 0,                             \
 921           "If > 0, provokes an error inside VM error handler (a secondary " \
 922           "crash). see test_error_handler() in debug.cpp.")                 \
 923                                                                             \
 924   notproduct(bool, TestSafeFetchInErrorHandler, false,                      \
 925           "If true, tests SafeFetch inside error handler.")                 \
 926                                                                             \
 927   develop(bool, Verbose, false,                                             \
 928           "Print additional debugging information from other modes")        \
 929                                                                             \
 930   develop(bool, PrintMiscellaneous, false,                                  \
 931           "Print uncategorized debugging information (requires +Verbose)")  \
 932                                                                             \
 933   develop(bool, WizardMode, false,                                          \
 934           "Print much more debugging information")                          \
 935                                                                             \
 936   product(bool, ShowMessageBoxOnError, false,                               \
 937           "Keep process alive on VM fatal error")                           \
 938                                                                             \
 939   product(bool, CreateMinidumpOnCrash, false,                               \
 940           "Create minidump on VM fatal error")                              \
 941                                                                             \
 942   product_pd(bool, UseOSErrorReporting,                                     \
 943           "Let VM fatal error propagate to the OS (ie. WER on Windows)")    \
 944                                                                             \
 945   product(bool, SuppressFatalErrorMessage, false,                           \
 946           "Report NO fatal error message (avoid deadlock)")                 \


< prev index next >