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/amd64 | |
parent | 187690a3e0724e51c20a94a626cc80a07134107c (diff) |
Move p_sigacts from struct proc to struct process.
testing help mpi@
Diffstat (limited to 'sys/arch/amd64')
-rw-r--r-- | sys/arch/amd64/amd64/machdep.c | 4 |
1 files changed, 2 insertions, 2 deletions
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; |