• Home
  • Raw
  • Download

Lines Matching refs:action

72 	return t->sighand->action[sig - 1].sa.sa_handler;  in sig_handler()
532 t->sighand->action[i].sa.sa_handler = SIG_IGN; in ignore_signals()
545 struct k_sigaction *ka = &t->sighand->action[0]; in flush_signal_handlers()
560 void __user *handler = tsk->sighand->action[sig-1].sa.sa_handler; in unhandled_signal()
1317 struct k_sigaction *action; in force_sig_info_to_task() local
1321 action = &t->sighand->action[sig-1]; in force_sig_info_to_task()
1322 ignored = action->sa.sa_handler == SIG_IGN; in force_sig_info_to_task()
1325 action->sa.sa_handler = SIG_DFL; in force_sig_info_to_task()
1335 if (action->sa.sa_handler == SIG_DFL && !t->ptrace) in force_sig_info_to_task()
1659 p->sighand->action[sig - 1].sa.sa_handler = SIG_DFL; in force_sigsegv()
1984 (psig->action[SIGCHLD-1].sa.sa_handler == SIG_IGN || in do_notify_parent()
1985 (psig->action[SIGCHLD-1].sa.sa_flags & SA_NOCLDWAIT))) { in do_notify_parent()
2002 if (psig->action[SIGCHLD-1].sa.sa_handler == SIG_IGN) in do_notify_parent()
2078 if (sighand->action[SIGCHLD-1].sa.sa_handler != SIG_IGN && in do_notify_parent_cldstop()
2079 !(sighand->action[SIGCHLD-1].sa.sa_flags & SA_NOCLDSTOP)) in do_notify_parent_cldstop()
2624 &sighand->action[SIGKILL - 1]); in get_signal()
2676 ka = &sighand->action[signr-1]; in get_signal()
3979 void kernel_sigaction(int sig, __sighandler_t action) in kernel_sigaction() argument
3982 current->sighand->action[sig - 1].sa.sa_handler = action; in kernel_sigaction()
3983 if (action == SIG_IGN) { in kernel_sigaction()
4011 k = &p->sighand->action[sig-1]; in do_sigaction()