Searched refs:oact (Results 26 - 36 of 36) sorted by relevance

12

/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/tile/include/asm/
H A Dsyscalls.h82 struct sigaction __user *oact, size_t sigsetsize);
H A Dcompat.h221 struct compat_sigaction __user *oact,
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/x86/kernel/
H A Dsignal.c504 struct old_sigaction __user *oact)
527 ret = do_sigaction(sig, act ? &new_ka : NULL, oact ? &old_ka : NULL);
529 if (!ret && oact) {
530 if (!access_ok(VERIFY_WRITE, oact, sizeof(*oact)))
534 put_user_ex(old_ka.sa.sa_handler, &oact->sa_handler);
535 put_user_ex(old_ka.sa.sa_flags, &oact->sa_flags);
536 put_user_ex(old_ka.sa.sa_mask.sig[0], &oact->sa_mask);
537 put_user_ex(old_ka.sa.sa_restorer, &oact->sa_restorer);
503 sys_sigaction(int sig, const struct old_sigaction __user *act, struct old_sigaction __user *oact) argument
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/m68k/kernel/
H A Dsignal.c125 struct old_sigaction __user *oact)
141 ret = do_sigaction(sig, act ? &new_ka : NULL, oact ? &old_ka : NULL);
143 if (!ret && oact) {
144 if (!access_ok(VERIFY_WRITE, oact, sizeof(*oact)) ||
145 __put_user(old_ka.sa.sa_handler, &oact->sa_handler) ||
146 __put_user(old_ka.sa.sa_restorer, &oact->sa_restorer))
148 __put_user(old_ka.sa.sa_flags, &oact->sa_flags);
149 __put_user(old_ka.sa.sa_mask.sig[0], &oact->sa_mask);
124 sys_sigaction(int sig, const struct old_sigaction __user *act, struct old_sigaction __user *oact) argument
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/m68knommu/kernel/
H A Dsignal.c113 struct old_sigaction *oact)
129 ret = do_sigaction(sig, act ? &new_ka : NULL, oact ? &old_ka : NULL);
131 if (!ret && oact) {
132 if (!access_ok(VERIFY_WRITE, oact, sizeof(*oact)) ||
133 __put_user(old_ka.sa.sa_handler, &oact->sa_handler) ||
134 __put_user(old_ka.sa.sa_restorer, &oact->sa_restorer))
136 __put_user(old_ka.sa.sa_flags, &oact->sa_flags);
137 __put_user(old_ka.sa.sa_mask.sig[0], &oact->sa_mask);
112 sys_sigaction(int sig, const struct old_sigaction *act, struct old_sigaction *oact) argument
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/arm/kernel/
H A Dsignal.c85 struct old_sigaction __user *oact)
101 ret = do_sigaction(sig, act ? &new_ka : NULL, oact ? &old_ka : NULL);
103 if (!ret && oact) {
104 if (!access_ok(VERIFY_WRITE, oact, sizeof(*oact)) ||
105 __put_user(old_ka.sa.sa_handler, &oact->sa_handler) ||
106 __put_user(old_ka.sa.sa_restorer, &oact->sa_restorer))
108 __put_user(old_ka.sa.sa_flags, &oact->sa_flags);
109 __put_user(old_ka.sa.sa_mask.sig[0], &oact->sa_mask);
84 sys_sigaction(int sig, const struct old_sigaction __user *act, struct old_sigaction __user *oact) argument
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/s390/kernel/
H A Dcompat_linux.h223 struct old_sigaction32 __user *oact);
225 struct sigaction32 __user *oact, size_t sigsetsize);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/sparc/kernel/
H A Dsys_sparc_64.c731 struct sigaction __user *, oact, void __user *, restorer,
746 ret = do_sigaction(sig, act ? &new_ka : NULL, oact ? &old_ka : NULL);
748 if (!ret && oact) {
749 if (copy_to_user(oact, &old_ka.sa, sizeof(*oact)))
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/parisc/kernel/
H A Dsignal32.c124 sys32_rt_sigaction(int sig, const struct sigaction32 __user *act, struct sigaction32 __user *oact, argument
139 ret = do_sigaction(sig, act ? &new_sa : NULL, oact ? &old_sa : NULL);
141 if (!ret && oact) {
145 if (copy_to_user(oact, &old_sa32.sa, sizeof old_sa32.sa))
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/ia64/include/asm/
H A Dunistd.h362 struct sigaction __user *oact,
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/kernel/
H A Dsignal.c2457 int do_sigaction(int sig, struct k_sigaction *act, struct k_sigaction *oact) argument
2469 if (oact)
2470 *oact = *k;
2635 struct sigaction __user *, oact,
2649 ret = do_sigaction(sig, act ? &new_sa : NULL, oact ? &old_sa : NULL);
2651 if (!ret && oact) {
2652 if (copy_to_user(oact, &old_sa.sa, sizeof(old_sa.sa)))

Completed in 203 milliseconds

12