mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-24 21:34:52 +02:00
8144881: Various fixes to linux/sparc
Fixed sigflags printing, format specfiers, codeCache includes and some function returns Reviewed-by: dsamersoff, simonis
This commit is contained in:
parent
24c8c40bb8
commit
c9fc986a36
14 changed files with 39 additions and 13 deletions
|
@ -4533,8 +4533,12 @@ void os::Linux::check_signal_handler(int sig) {
|
|||
}
|
||||
} else if(os::Linux::get_our_sigflags(sig) != 0 && (int)act.sa_flags != os::Linux::get_our_sigflags(sig)) {
|
||||
tty->print("Warning: %s handler flags ", exception_name(sig, buf, O_BUFLEN));
|
||||
tty->print("expected:" PTR32_FORMAT, os::Linux::get_our_sigflags(sig));
|
||||
tty->print_cr(" found:" PTR32_FORMAT, act.sa_flags);
|
||||
tty->print("expected:");
|
||||
os::Posix::print_sa_flags(tty, os::Linux::get_our_sigflags(sig));
|
||||
tty->cr();
|
||||
tty->print(" found:");
|
||||
os::Posix::print_sa_flags(tty, act.sa_flags);
|
||||
tty->cr();
|
||||
// No need to check this sig any longer
|
||||
sigaddset(&check_signal_done, sig);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue