diff -r 889dae20c4c4 -r feea57b38a1c src/hotspot/os/windows/os_windows.cpp --- a/src/hotspot/os/windows/os_windows.cpp Thu Mar 07 16:15:43 2019 +0100 +++ b/src/hotspot/os/windows/os_windows.cpp Fri Mar 08 11:23:30 2019 +0100 @@ -1797,6 +1797,11 @@ st->cr(); } +bool os::signal_sent_by_kill(const void* siginfo) { + // TODO: Is this possible? + return false; +} + void os::print_siginfo(outputStream *st, const void* siginfo) { const EXCEPTION_RECORD* const er = (EXCEPTION_RECORD*)siginfo; st->print("siginfo:"); @@ -1830,6 +1835,11 @@ st->cr(); } +bool os::signal_thread(Thread* thread, int sig, const char* reason) { + // TODO: Can we kill thread? + return false; +} + void os::print_signal_handlers(outputStream* st, char* buf, size_t buflen) { // do nothing }