8255734: VM should ignore SIGXFSZ on ppc64, s390 too

Reviewed-by: mdoerr, lucy
This commit is contained in:
Thomas Stuefe 2020-11-02 12:45:05 +00:00
parent ceab9f3248
commit 54c8813254
3 changed files with 3 additions and 3 deletions

View file

@ -206,7 +206,7 @@ JVM_handle_linux_signal(int sig,
// avoid unnecessary crash when libjsig is not preloaded, try handle signals
// that do not require siginfo/ucontext first.
if (sig == SIGPIPE) {
if (sig == SIGPIPE || sig == SIGXFSZ) {
if (PosixSignals::chained_handler(sig, info, ucVoid)) {
return true;
} else {