diff options
author | Philip Guenther <guenther@cvs.openbsd.org> | 2014-03-22 06:05:46 +0000 |
---|---|---|
committer | Philip Guenther <guenther@cvs.openbsd.org> | 2014-03-22 06:05:46 +0000 |
commit | 58e167147475b8367a25672642fd1841a7c4c1e6 (patch) | |
tree | 39517e7dd439b7734c981f57eb67360f7c017e46 /sys/arch/socppc | |
parent | 187690a3e0724e51c20a94a626cc80a07134107c (diff) |
Move p_sigacts from struct proc to struct process.
testing help mpi@
Diffstat (limited to 'sys/arch/socppc')
-rw-r--r-- | sys/arch/socppc/socppc/machdep.c | 4 |
1 files changed, 2 insertions, 2 deletions
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; |