Lines Matching refs:oact
61 struct osf_sigaction __user *, oact) in SYSCALL_DEFINE3() argument
77 ret = do_sigaction(sig, act ? &new_ka : NULL, oact ? &old_ka : NULL); in SYSCALL_DEFINE3()
79 if (!ret && oact) { in SYSCALL_DEFINE3()
80 if (!access_ok(oact, sizeof(*oact)) || in SYSCALL_DEFINE3()
81 __put_user(old_ka.sa.sa_handler, &oact->sa_handler) || in SYSCALL_DEFINE3()
82 __put_user(old_ka.sa.sa_flags, &oact->sa_flags) || in SYSCALL_DEFINE3()
83 __put_user(old_ka.sa.sa_mask.sig[0], &oact->sa_mask)) in SYSCALL_DEFINE3()
91 struct sigaction __user *, oact, in SYSCALL_DEFINE5() argument
107 ret = do_sigaction(sig, act ? &new_ka : NULL, oact ? &old_ka : NULL); in SYSCALL_DEFINE5()
109 if (!ret && oact) { in SYSCALL_DEFINE5()
110 if (copy_to_user(oact, &old_ka.sa, sizeof(*oact))) in SYSCALL_DEFINE5()