Skip to content

Commit 44d34ba

Browse files
Fix missing os::print_signal_handlers on Windows, white space on Linux
1 parent dbec19c commit 44d34ba

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

src/hotspot/os/windows/os_windows.cpp

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1872,6 +1872,10 @@ bool os::signal_thread(Thread* thread, int sig, const char* reason) {
18721872
return false;
18731873
}
18741874

1875+
void os::print_signal_handlers(outputStream* st, char* buf, size_t buflen) {
1876+
// do nothing
1877+
}
1878+
18751879
static char saved_jvm_path[MAX_PATH] = {0};
18761880

18771881
// Find the full path to the current module, jvm.dll

src/hotspot/os_cpu/linux_ppc/os_linux_ppc.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -406,7 +406,7 @@ bool PosixSignals::pd_hotspot_signal_handler(int sig, siginfo_t* info,
406406
os::Posix::ucontext_set_pc(uc, stub);
407407
return true;
408408
}
409-
409+
410410
return false;
411411
}
412412

0 commit comments

Comments
 (0)