hotspot/src/os/posix/vm/os_posix.cpp
changeset 35077 8b86440d3bf1
parent 35047 b1f924d2efe8
child 35155 db692d3ebbcc
child 35176 11a9d4022d9e
equal deleted inserted replaced
35076:14858721b3b3 35077:8b86440d3bf1
  1029 
  1029 
  1030 int os::Posix::unblock_thread_signal_mask(const sigset_t *set) {
  1030 int os::Posix::unblock_thread_signal_mask(const sigset_t *set) {
  1031   return pthread_sigmask(SIG_UNBLOCK, set, NULL);
  1031   return pthread_sigmask(SIG_UNBLOCK, set, NULL);
  1032 }
  1032 }
  1033 
  1033 
  1034 address os::Posix::ucontext_get_pc(ucontext_t* ctx) {
  1034 address os::Posix::ucontext_get_pc(const ucontext_t* ctx) {
  1035 #ifdef TARGET_OS_FAMILY_linux
  1035 #ifdef TARGET_OS_FAMILY_linux
  1036    return Linux::ucontext_get_pc(ctx);
  1036    return Linux::ucontext_get_pc(ctx);
  1037 #elif defined(TARGET_OS_FAMILY_solaris)
  1037 #elif defined(TARGET_OS_FAMILY_solaris)
  1038    return Solaris::ucontext_get_pc(ctx);
  1038    return Solaris::ucontext_get_pc(ctx);
  1039 #elif defined(TARGET_OS_FAMILY_aix)
  1039 #elif defined(TARGET_OS_FAMILY_aix)