hotspot/src/os/aix/vm/os_aix.cpp
changeset 34667 6b077f0ef25d
parent 34647 fafb32d71489
child 35063 cb24277be2e7
--- a/hotspot/src/os/aix/vm/os_aix.cpp	Tue Dec 08 05:50:46 2015 -0800
+++ b/hotspot/src/os/aix/vm/os_aix.cpp	Tue Dec 08 11:36:16 2015 -0800
@@ -3431,8 +3431,12 @@
     }
   } else if (os::Aix::get_our_sigflags(sig) != 0 && (int)act.sa_flags != os::Aix::get_our_sigflags(sig)) {
     tty->print("Warning: %s handler flags ", exception_name(sig, buf, O_BUFLEN));
-    tty->print("expected:" PTR32_FORMAT, os::Aix::get_our_sigflags(sig));
-    tty->print_cr("  found:" PTR32_FORMAT, act.sa_flags);
+    tty->print("expected:");
+    os::Posix::print_sa_flags(tty, os::Aix::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);
   }