Lines Matching defs:act
327 // the system call returns 1. This causes the VM to act as if it is
3963 struct sigaction act;
3980 act.sa_flags = SA_RESTART|SA_SIGINFO;
3981 act.sa_handler = (void (*)(int)) SR_handler;
3988 pthread_sigmask(SIG_BLOCK, NULL, &act.sa_mask);
3990 if (sigaction(SR_signum, &act, 0) == -1) {
3995 os::Bsd::set_our_sigflags(SR_signum, act.sa_flags);
4546 struct sigaction act;
4553 os_sigaction(sig, (struct sigaction*)NULL, &act);
4556 act.sa_flags &= SIGNIFICANT_SIGNAL_MASK;
4558 address thisHandler = (act.sa_flags & SA_SIGINFO)
4559 ? CAST_FROM_FN_PTR(address, act.sa_sigaction)
4560 : CAST_FROM_FN_PTR(address, act.sa_handler) ;
4599 } else if(os::Bsd::get_our_sigflags(sig) != 0 && (int)act.sa_flags != os::Bsd::get_our_sigflags(sig)) {
4602 tty->print_cr(" found:" PTR32_FORMAT, act.sa_flags);