summaryrefslogtreecommitdiff
path: root/sys/arch
diff options
context:
space:
mode:
Diffstat (limited to 'sys/arch')
-rw-r--r--sys/arch/alpha/alpha/machdep.c4
-rw-r--r--sys/arch/amd64/amd64/machdep.c4
-rw-r--r--sys/arch/arm/arm/sig_machdep.c4
-rw-r--r--sys/arch/hppa/hppa/machdep.c4
-rw-r--r--sys/arch/hppa64/hppa64/machdep.c4
-rw-r--r--sys/arch/i386/i386/linux_machdep.c4
-rw-r--r--sys/arch/i386/i386/machdep.c4
-rw-r--r--sys/arch/m88k/m88k/sig_machdep.c4
-rw-r--r--sys/arch/macppc/macppc/machdep.c4
-rw-r--r--sys/arch/mips64/mips64/sendsig.c4
-rw-r--r--sys/arch/sh/sh/sh_machdep.c4
-rw-r--r--sys/arch/socppc/socppc/machdep.c4
-rw-r--r--sys/arch/solbourne/solbourne/machdep.c4
-rw-r--r--sys/arch/sparc/sparc/machdep.c4
-rw-r--r--sys/arch/sparc64/sparc64/machdep.c4
-rw-r--r--sys/arch/vax/vax/machdep.c4
16 files changed, 32 insertions, 32 deletions
diff --git a/sys/arch/alpha/alpha/machdep.c b/sys/arch/alpha/alpha/machdep.c
index 61c5dd8743a..a806c5f8a46 100644
--- a/sys/arch/alpha/alpha/machdep.c
+++ b/sys/arch/alpha/alpha/machdep.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: machdep.c,v 1.150 2014/03/13 03:52:55 dlg Exp $ */
+/* $OpenBSD: machdep.c,v 1.151 2014/03/22 06:05:45 guenther Exp $ */
/* $NetBSD: machdep.c,v 1.210 2000/06/01 17:12:38 thorpej Exp $ */
/*-
@@ -1427,7 +1427,7 @@ sendsig(catcher, sig, mask, code, type, val)
struct sigcontext *scp, ksc;
struct fpreg *fpregs = (struct fpreg *)&ksc.sc_fpregs;
struct trapframe *frame;
- struct sigacts *psp = p->p_sigacts;
+ struct sigacts *psp = p->p_p->ps_sigacts;
unsigned long oldsp;
int fsize, rndfsize, kscsize;
siginfo_t *sip, ksi;
diff --git a/sys/arch/amd64/amd64/machdep.c b/sys/arch/amd64/amd64/machdep.c
index ff40d3346b1..f8b43ad877d 100644
--- a/sys/arch/amd64/amd64/machdep.c
+++ b/sys/arch/amd64/amd64/machdep.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: machdep.c,v 1.174 2014/03/13 03:52:55 dlg Exp $ */
+/* $OpenBSD: machdep.c,v 1.175 2014/03/22 06:05:45 guenther Exp $ */
/* $NetBSD: machdep.c,v 1.3 2003/05/07 22:58:18 fvdl Exp $ */
/*-
@@ -543,7 +543,7 @@ sendsig(sig_t catcher, int sig, int mask, u_long code, int type,
{
struct proc *p = curproc;
struct trapframe *tf = p->p_md.md_regs;
- struct sigacts * psp = p->p_sigacts;
+ struct sigacts *psp = p->p_p->ps_sigacts;
struct sigcontext ksc;
siginfo_t ksi;
register_t sp, scp, sip;
diff --git a/sys/arch/arm/arm/sig_machdep.c b/sys/arch/arm/arm/sig_machdep.c
index 7fa8e03c55a..87ce5695107 100644
--- a/sys/arch/arm/arm/sig_machdep.c
+++ b/sys/arch/arm/arm/sig_machdep.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: sig_machdep.c,v 1.9 2013/05/10 10:20:23 patrick Exp $ */
+/* $OpenBSD: sig_machdep.c,v 1.10 2014/03/22 06:05:45 guenther Exp $ */
/* $NetBSD: sig_machdep.c,v 1.22 2003/10/08 00:28:41 thorpej Exp $ */
/*
@@ -81,7 +81,7 @@ sendsig(sig_t catcher, int sig, int returnmask, u_long code, int type,
struct proc *p = curproc;
struct trapframe *tf;
struct sigframe *fp, frame;
- struct sigacts *psp = p->p_sigacts;
+ struct sigacts *psp = p->p_p->ps_sigacts;
tf = process_frame(p);
diff --git a/sys/arch/hppa/hppa/machdep.c b/sys/arch/hppa/hppa/machdep.c
index bbec65937c7..7b8670f650b 100644
--- a/sys/arch/hppa/hppa/machdep.c
+++ b/sys/arch/hppa/hppa/machdep.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: machdep.c,v 1.214 2014/03/13 03:52:55 dlg Exp $ */
+/* $OpenBSD: machdep.c,v 1.215 2014/03/22 06:05:45 guenther Exp $ */
/*
* Copyright (c) 1999-2003 Michael Shalayeff
@@ -1216,7 +1216,7 @@ sendsig(sig_t catcher, int sig, int mask, u_long code, int type,
struct proc *p = curproc;
struct trapframe *tf = p->p_md.md_regs;
struct pcb *pcb = &p->p_addr->u_pcb;
- struct sigacts *psp = p->p_sigacts;
+ struct sigacts *psp = p->p_p->ps_sigacts;
struct sigcontext ksc;
siginfo_t ksi;
register_t scp, sip;
diff --git a/sys/arch/hppa64/hppa64/machdep.c b/sys/arch/hppa64/hppa64/machdep.c
index 46e628da809..724b82edc27 100644
--- a/sys/arch/hppa64/hppa64/machdep.c
+++ b/sys/arch/hppa64/hppa64/machdep.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: machdep.c,v 1.54 2014/03/13 03:52:55 dlg Exp $ */
+/* $OpenBSD: machdep.c,v 1.55 2014/03/22 06:05:45 guenther Exp $ */
/*
* Copyright (c) 2005 Michael Shalayeff
@@ -844,7 +844,7 @@ sendsig(sig_t catcher, int sig, int mask, u_long code, int type,
struct proc *p = curproc;
struct trapframe *tf = p->p_md.md_regs;
struct pcb *pcb = &p->p_addr->u_pcb;
- struct sigacts *psp = p->p_sigacts;
+ struct sigacts *psp = p->p_p->ps_sigacts;
struct sigcontext ksc;
siginfo_t ksi;
register_t scp, sip;
diff --git a/sys/arch/i386/i386/linux_machdep.c b/sys/arch/i386/i386/linux_machdep.c
index 70f4c59ba52..ffa82f656f4 100644
--- a/sys/arch/i386/i386/linux_machdep.c
+++ b/sys/arch/i386/i386/linux_machdep.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: linux_machdep.c,v 1.43 2012/04/22 05:43:14 guenther Exp $ */
+/* $OpenBSD: linux_machdep.c,v 1.44 2014/03/22 06:05:45 guenther Exp $ */
/* $NetBSD: linux_machdep.c,v 1.29 1996/05/03 19:42:11 christos Exp $ */
/*
@@ -110,7 +110,7 @@ linux_sendsig(sig_t catcher, int sig, int mask, u_long code, int type,
struct proc *p = curproc;
struct trapframe *tf;
struct linux_sigframe *fp, frame;
- struct sigacts *psp = p->p_sigacts;
+ struct sigacts *psp = p->p_p->ps_sigacts;
int oonstack;
tf = p->p_md.md_regs;
diff --git a/sys/arch/i386/i386/machdep.c b/sys/arch/i386/i386/machdep.c
index 515551421dd..26c177d02f9 100644
--- a/sys/arch/i386/i386/machdep.c
+++ b/sys/arch/i386/i386/machdep.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: machdep.c,v 1.533 2014/03/16 05:19:44 jsg Exp $ */
+/* $OpenBSD: machdep.c,v 1.534 2014/03/22 06:05:45 guenther Exp $ */
/* $NetBSD: machdep.c,v 1.214 1996/11/10 03:16:17 thorpej Exp $ */
/*-
@@ -2304,7 +2304,7 @@ sendsig(sig_t catcher, int sig, int mask, u_long code, int type,
struct proc *p = curproc;
struct trapframe *tf = p->p_md.md_regs;
struct sigframe *fp, frame;
- struct sigacts *psp = p->p_sigacts;
+ struct sigacts *psp = p->p_p->ps_sigacts;
register_t sp;
/*
diff --git a/sys/arch/m88k/m88k/sig_machdep.c b/sys/arch/m88k/m88k/sig_machdep.c
index e634fbdfa18..518dad599e6 100644
--- a/sys/arch/m88k/m88k/sig_machdep.c
+++ b/sys/arch/m88k/m88k/sig_machdep.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: sig_machdep.c,v 1.16 2012/12/02 07:03:31 guenther Exp $ */
+/* $OpenBSD: sig_machdep.c,v 1.17 2014/03/22 06:05:45 guenther Exp $ */
/*
* Copyright (c) 1998, 1999, 2000, 2001 Steve Murphree, Jr.
* Copyright (c) 1996 Nivas Madhur
@@ -88,7 +88,7 @@ sendsig(sig_t catcher, int sig, int mask, unsigned long code, int type,
{
struct proc *p = curproc;
struct trapframe *tf;
- struct sigacts *psp = p->p_sigacts;
+ struct sigacts *psp = p->p_p->ps_sigacts;
struct sigframe *fp;
int fsize;
struct sigframe sf;
diff --git a/sys/arch/macppc/macppc/machdep.c b/sys/arch/macppc/macppc/machdep.c
index 02a5ff8cf32..dcb9058cd41 100644
--- a/sys/arch/macppc/macppc/machdep.c
+++ b/sys/arch/macppc/macppc/machdep.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: machdep.c,v 1.145 2014/03/13 03:52:55 dlg Exp $ */
+/* $OpenBSD: machdep.c,v 1.146 2014/03/22 06:05:45 guenther Exp $ */
/* $NetBSD: machdep.c,v 1.4 1996/10/16 19:33:11 ws Exp $ */
/*
@@ -532,7 +532,7 @@ sendsig(sig_t catcher, int sig, int mask, u_long code, int type,
struct proc *p = curproc;
struct trapframe *tf;
struct sigframe *fp, frame;
- struct sigacts *psp = p->p_sigacts;
+ struct sigacts *psp = p->p_p->ps_sigacts;
bzero(&frame, sizeof(frame));
frame.sf_signum = sig;
diff --git a/sys/arch/mips64/mips64/sendsig.c b/sys/arch/mips64/mips64/sendsig.c
index 74c238e5e57..826cf2157ff 100644
--- a/sys/arch/mips64/mips64/sendsig.c
+++ b/sys/arch/mips64/mips64/sendsig.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: sendsig.c,v 1.20 2012/12/02 07:03:31 guenther Exp $ */
+/* $OpenBSD: sendsig.c,v 1.21 2014/03/22 06:05:45 guenther Exp $ */
/*
* Copyright (c) 1990 The Regents of the University of California.
@@ -111,7 +111,7 @@ sendsig(catcher, sig, mask, code, type, val)
struct proc *p = curproc;
struct sigframe *fp;
struct trap_frame *regs;
- struct sigacts *psp = p->p_sigacts;
+ struct sigacts *psp = p->p_p->ps_sigacts;
int fsize;
struct sigcontext ksc;
diff --git a/sys/arch/sh/sh/sh_machdep.c b/sys/arch/sh/sh/sh_machdep.c
index 79eeb06ed47..f0033bacb79 100644
--- a/sys/arch/sh/sh/sh_machdep.c
+++ b/sys/arch/sh/sh/sh_machdep.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: sh_machdep.c,v 1.34 2013/06/11 16:42:10 deraadt Exp $ */
+/* $OpenBSD: sh_machdep.c,v 1.35 2014/03/22 06:05:45 guenther Exp $ */
/* $NetBSD: sh3_machdep.c,v 1.59 2006/03/04 01:13:36 uwe Exp $ */
/*
@@ -460,7 +460,7 @@ sendsig(sig_t catcher, int sig, int mask, u_long code, int type,
struct proc *p = curproc;
struct sigframe *fp, frame;
struct trapframe *tf = p->p_md.md_regs;
- struct sigacts *psp = p->p_sigacts;
+ struct sigacts *psp = p->p_p->ps_sigacts;
siginfo_t *sip;
if ((p->p_sigstk.ss_flags & SS_DISABLE) == 0 &&
diff --git a/sys/arch/socppc/socppc/machdep.c b/sys/arch/socppc/socppc/machdep.c
index 59d0c15e05c..f7c790a8114 100644
--- a/sys/arch/socppc/socppc/machdep.c
+++ b/sys/arch/socppc/socppc/machdep.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: machdep.c,v 1.40 2014/03/13 03:52:55 dlg Exp $ */
+/* $OpenBSD: machdep.c,v 1.41 2014/03/22 06:05:45 guenther Exp $ */
/* $NetBSD: machdep.c,v 1.4 1996/10/16 19:33:11 ws Exp $ */
/*
@@ -880,7 +880,7 @@ sendsig(sig_t catcher, int sig, int mask, u_long code, int type,
struct proc *p = curproc;
struct trapframe *tf;
struct sigframe *fp, frame;
- struct sigacts *psp = p->p_sigacts;
+ struct sigacts *psp = p->p_p->ps_sigacts;
bzero(&frame, sizeof(frame));
frame.sf_signum = sig;
diff --git a/sys/arch/solbourne/solbourne/machdep.c b/sys/arch/solbourne/solbourne/machdep.c
index c5371c495c0..d408d37f222 100644
--- a/sys/arch/solbourne/solbourne/machdep.c
+++ b/sys/arch/solbourne/solbourne/machdep.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: machdep.c,v 1.28 2014/03/13 03:52:55 dlg Exp $ */
+/* $OpenBSD: machdep.c,v 1.29 2014/03/22 06:05:45 guenther Exp $ */
/* OpenBSD: machdep.c,v 1.105 2005/04/11 15:13:01 deraadt Exp */
/*
@@ -361,7 +361,7 @@ sendsig(catcher, sig, mask, code, type, val)
union sigval val;
{
struct proc *p = curproc;
- struct sigacts *psp = p->p_sigacts;
+ struct sigacts *psp = p->p_p->ps_sigacts;
struct sigframe *fp;
struct trapframe *tf;
int caddr, oldsp, newsp;
diff --git a/sys/arch/sparc/sparc/machdep.c b/sys/arch/sparc/sparc/machdep.c
index d336fae3e45..42efbeccbfd 100644
--- a/sys/arch/sparc/sparc/machdep.c
+++ b/sys/arch/sparc/sparc/machdep.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: machdep.c,v 1.148 2014/03/13 03:52:55 dlg Exp $ */
+/* $OpenBSD: machdep.c,v 1.149 2014/03/22 06:05:45 guenther Exp $ */
/* $NetBSD: machdep.c,v 1.85 1997/09/12 08:55:02 pk Exp $ */
/*
@@ -370,7 +370,7 @@ sendsig(catcher, sig, mask, code, type, val)
union sigval val;
{
struct proc *p = curproc;
- struct sigacts *psp = p->p_sigacts;
+ struct sigacts *psp = p->p_p->ps_sigacts;
struct sigframe *fp;
struct trapframe *tf;
int caddr, oldsp, newsp;
diff --git a/sys/arch/sparc64/sparc64/machdep.c b/sys/arch/sparc64/sparc64/machdep.c
index 445f86c341e..4f3dca565ad 100644
--- a/sys/arch/sparc64/sparc64/machdep.c
+++ b/sys/arch/sparc64/sparc64/machdep.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: machdep.c,v 1.151 2014/03/21 03:56:49 guenther Exp $ */
+/* $OpenBSD: machdep.c,v 1.152 2014/03/22 06:05:45 guenther Exp $ */
/* $NetBSD: machdep.c,v 1.108 2001/07/24 19:30:14 eeh Exp $ */
/*-
@@ -424,7 +424,7 @@ sendsig(catcher, sig, mask, code, type, val)
union sigval val;
{
struct proc *p = curproc;
- struct sigacts *psp = p->p_sigacts;
+ struct sigacts *psp = p->p_p->ps_sigacts;
struct sigframe *fp;
struct trapframe64 *tf;
vaddr_t addr, oldsp, newsp;
diff --git a/sys/arch/vax/vax/machdep.c b/sys/arch/vax/vax/machdep.c
index 79a451bf828..be2017947a6 100644
--- a/sys/arch/vax/vax/machdep.c
+++ b/sys/arch/vax/vax/machdep.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: machdep.c,v 1.131 2014/03/13 03:52:56 dlg Exp $ */
+/* $OpenBSD: machdep.c,v 1.132 2014/03/22 06:05:45 guenther Exp $ */
/* $NetBSD: machdep.c,v 1.108 2000/09/13 15:00:23 thorpej Exp $ */
/*
@@ -443,7 +443,7 @@ sendsig(catcher, sig, mask, code, type, val)
union sigval val;
{
struct proc *p = curproc;
- struct sigacts *psp = p->p_sigacts;
+ struct sigacts *psp = p->p_p->ps_sigacts;
struct trapframe *syscf;
struct sigframe *sigf, gsigf;
unsigned int cursp;