mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-19 10:34:38 +02:00
8237777: "Dumping core ..." is shown despite claiming that "# No core dump will be written."
Remove the unneeded and possibly misleading message. Reviewed-by: dholmes, ysuenaga
This commit is contained in:
parent
09287ab1ac
commit
1f31afd855
4 changed files with 0 additions and 32 deletions
|
@ -1070,14 +1070,6 @@ void os::shutdown() {
|
|||
void os::abort(bool dump_core, void* siginfo, const void* context) {
|
||||
os::shutdown();
|
||||
if (dump_core) {
|
||||
#ifndef PRODUCT
|
||||
fdStream out(defaultStream::output_fd());
|
||||
out.print_raw("Current thread is ");
|
||||
char buf[16];
|
||||
jio_snprintf(buf, sizeof(buf), UINTX_FORMAT, os::current_thread_id());
|
||||
out.print_raw_cr(buf);
|
||||
out.print_raw_cr("Dumping core ...");
|
||||
#endif
|
||||
::abort(); // dump core
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue