/src/sys/arch/i386/i386/ |
compat_16_machdep.c | 157 int onstack, error; local in function:sendsig_sigcontext 160 struct sigframe_sigcontext *fp = getframe(l, sig, &onstack), frame; 239 if (onstack)
|
/src/sys/arch/sh3/sh3/ |
compat_16_machdep.c | 103 int onstack, error; local in function:sendsig_sigcontext 105 fp = getframe(l, sig, &onstack); 178 if (onstack)
|
/src/sys/compat/freebsd/ |
freebsd_machdep.c | 84 int onstack, error; local in function:freebsd_sendsig 85 struct freebsd_sigframe *fp = getframe(l, sig, &onstack), frame; 145 if (onstack)
|
/src/sys/arch/arm/arm/ |
compat_16_machdep.c | 90 int onstack, error; local in function:sendsig_sigcontext 95 fp = getframe(l, sig, &onstack); 192 if (onstack)
|
sig_machdep.c | 64 getframe(struct lwp *l, int sig, int *onstack) 70 *onstack = (l->l_sigstk.ss_flags & (SS_DISABLE | SS_ONSTACK)) == 0 72 if (*onstack) 95 int onstack, error; local in function:sendsig_siginfo 99 fp = getframe(l, sig, &onstack); 155 if (onstack)
|
/src/sys/arch/amd64/amd64/ |
netbsd32_machdep_16.c | 92 int onstack, error; local in function:netbsd32_sendsig_sigcontext 98 onstack = 103 if (onstack) 169 netbsd32_buildcontext(l, tf, fp, catcher, onstack);
|
/src/sys/arch/powerpc/powerpc/ |
compat_16_machdep.c | 98 int onstack, error; local in function:sendsig_sigcontext 105 onstack = 110 if (onstack) 203 if (onstack)
|
sig_machdep.c | 77 int onstack, error; local in function:sendsig_siginfo 80 onstack = (ss->ss_flags & (SS_DISABLE | SS_ONSTACK)) == 0 && 84 sp = (onstack ? (vaddr_t)ss->ss_sp + ss->ss_size : tf->tf_fixreg[1]); 161 if (onstack)
|
/src/sys/arch/riscv/riscv/ |
sig_machdep.c | 57 cpu_sendsig_getframe(struct lwp *l, int signo, bool *onstack) 63 *onstack = (l->l_sigstk.ss_flags & (SS_DISABLE | SS_ONSTACK)) == 0 65 if (*onstack) 92 bool onstack; local in function:sendsig_siginfo 94 cpu_sendsig_getframe(l, signo, &onstack); 137 if (onstack)
|
/src/sys/arch/alpha/alpha/ |
compat_16_machdep.c | 109 int onstack, sig = ksi->ksi_signo, error; local in function:sendsig_sigcontext 117 fp = getframe(l, sig, &onstack, sizeof(*fp), _Alignof(*fp)); 122 p->p_pid, sig, &onstack, fp); 221 if (onstack)
|
/src/sys/arch/mips/mips/ |
sig_machdep.c | 52 getframe(struct lwp *l, int sig, int *onstack, size_t size, size_t align) 61 *onstack = (l->l_sigstk.ss_flags & (SS_DISABLE | SS_ONSTACK)) == 0 63 if (*onstack) 92 int onstack, error; local in function:sendsig_siginfo 94 struct sigframe_siginfo *sf = getframe(l, signo, &onstack, 136 if (onstack)
|
compat_16_machdep.c | 98 int onstack, error; local in function:sendsig_sigcontext 99 struct sigcontext *scp = getframe(l, sig, &onstack, 114 p->p_pid, sig, &onstack, scp); 208 if (onstack)
|
/src/sys/compat/linux/arch/arm/ |
linux_machdep.c | 85 int onstack, error; local in function:linux_sendsig 96 onstack = 101 if (onstack) 132 /* Linux doesn't save the onstack flag in sigframe */ 173 if (onstack)
|
/src/sys/arch/vax/vax/ |
sig_machdep.c | 151 struct lwp *l, struct trapframe *tf, vaddr_t sp, int onstack, 204 int onstack; local in function:sendsig_sighelper 208 onstack = (ss->ss_flags & (SS_DISABLE | SS_ONSTACK)) == 0 && 210 sp = onstack ? ((vaddr_t)ss->ss_sp + ss->ss_size) : tf->tf_sp; 216 sp = (*setup)(ksi, mask, sd->sd_vers, l, tf, sp, onstack, 230 if (onstack)
|
/src/sys/arch/hppa/hppa/ |
sig_machdep.c | 99 getframe(struct lwp *l, int sig, int *onstack) 105 *onstack = (l->l_sigstk.ss_flags & (SS_DISABLE | SS_ONSTACK)) == 0 107 if (*onstack) 129 int onstack, error; local in function:sendsig_siginfo 131 fp = getframe(l, sig, &onstack); 184 if (onstack)
|
/src/sys/arch/m68k/m68k/ |
compat_16_machdep.c | 91 int onstack, error; local in function:sendsig_sigcontext 94 struct sigframe_sigcontext *fp = getframe(l, sig, &onstack), kf; 103 p->p_pid, sig, &onstack, fp, &fp->sf_sc, ft); 224 if (onstack)
|
sig_machdep.c | 116 getframe(struct lwp *l, int sig, int *onstack) 121 *onstack =(l->l_sigstk.ss_flags & (SS_DISABLE | SS_ONSTACK)) == 0 124 if (*onstack) 155 int onstack, error; local in function:sendsig_siginfo 157 struct sigframe_siginfo *fp = getframe(l, sig, &onstack), kf; 191 if (onstack)
|
/src/sys/arch/sparc64/sparc64/ |
compat_16_machdep.c | 95 int onstack, error; local in function:sendsig_sigcontext 97 struct sigframe_sigcontext *fp = getframe(l, sig, &onstack); 230 if (onstack)
|
netbsd32_machdep_16.c | 111 int addr, onstack, error; local in function:netbsd32_sendsig_sigcontext 123 onstack = 126 if (onstack) { 156 sf.sf_sc.sc_onstack = onstack; 223 if (onstack)
|
sunos32_machdep.c | 171 int onstack, error; local in function:sunos32_sendsig 183 onstack = 187 if (onstack)
|
/src/sys/compat/linux/arch/alpha/ |
linux_machdep.c | 116 int onstack, error; local in function:setup_linux_rt_sigframe 122 onstack = (l->l_sigstk.ss_flags & (SS_DISABLE | SS_ONSTACK)) == 0 && 129 if (onstack) 139 sig, &onstack, sfp); 148 sigframe.uc.uc_mcontext.sc_onstack = onstack; 201 if (onstack) 211 int onstack, error; local in function:setup_linux_sigframe 217 onstack = (l->l_sigstk.ss_flags & (SS_DISABLE | SS_ONSTACK)) == 0 && 224 if (onstack) 234 sig, &onstack, sfp) [all...] |
/src/sys/arch/sparc/sparc/ |
compat_16_machdep.c | 119 int addr, onstack, oldsp, newsp, error; local in function:sendsig_sigcontext 132 onstack = 136 if (onstack) 240 if (onstack)
|
sunos_machdep.c | 76 int addr, onstack, oldsp, newsp, error; local in function:sunos_sendsig 89 onstack = 93 if (onstack) 172 if (onstack)
|
/src/sys/arch/usermode/target/i386/ |
cpu_i386.c | 106 int onstack, error; local in function:sendsig_siginfo 123 onstack = (l->l_sigstk.ss_flags & (SS_DISABLE | SS_ONSTACK)) == 0 127 if (onstack) 170 if (onstack)
|
/src/sys/arch/usermode/target/x86_64/ |
cpu_x86_64.c | 102 int onstack, error; local in function:sendsig_siginfo 120 onstack = (l->l_sigstk.ss_flags & (SS_DISABLE | SS_ONSTACK)) == 0 124 if (onstack) 172 if (onstack)
|