src/share/vm/runtime/os.hpp
Print this page
*** 490,499 ****
--- 490,500 ----
// Terminate the VM, but don't exit the process
static void shutdown();
// Terminate with an error. Default is to generate a core file on platforms
// that support such things. This calls shutdown() and then aborts.
+ static void abort(bool dump_core, void *siginfo, void *context);
static void abort(bool dump_core = true);
// Die immediately, no exit hook, no abort hook, no cleanup.
static void die();
*** 714,725 ****
static void init_random(long initval); // initialize random sequence
// Structured OS Exception support
static void os_exception_wrapper(java_call_t f, JavaValue* value, methodHandle* method, JavaCallArguments* args, Thread* thread);
! // On Windows this will create an actual minidump, on Linux/Solaris it will simply check core dump limits
! static void check_or_create_dump(void* exceptionRecord, void* contextRecord, char* buffer, size_t bufferSize);
// Get the default path to the core file
// Returns the length of the string
static int get_core_path(char* buffer, size_t bufferSize);
--- 715,727 ----
static void init_random(long initval); // initialize random sequence
// Structured OS Exception support
static void os_exception_wrapper(java_call_t f, JavaValue* value, methodHandle* method, JavaCallArguments* args, Thread* thread);
! // ON Posix compatible OS it will simply check core dump limits while
! // On Windows it will check if dump file can be created.
! static void check_dump_limit(char* buffer, size_t bufferSize);
// Get the default path to the core file
// Returns the length of the string
static int get_core_path(char* buffer, size_t bufferSize);