diff options
author | jmallett <jmallett@FreeBSD.org> | 2002-11-06 14:53:35 +0000 |
---|---|---|
committer | jmallett <jmallett@FreeBSD.org> | 2002-11-06 14:53:35 +0000 |
commit | e1d1292908877aa20f42d58ae48140a142cfb1d2 (patch) | |
tree | 3ba114075cb0cbb359caf4c988fc610e44cf2461 /sys/pc98 | |
parent | e47c24189203bdde0576b1ee3934cb7cb316531f (diff) | |
download | FreeBSD-src-e1d1292908877aa20f42d58ae48140a142cfb1d2.zip FreeBSD-src-e1d1292908877aa20f42d58ae48140a142cfb1d2.tar.gz |
Remove what was a temporary bogus assignment of bits of siginfo_t, as it does
not look like the prerequisites to fill it in properly will be in the tree
for the upcoming release, but it's mostly done, so there is no need for these
to stay around to remind us.
Diffstat (limited to 'sys/pc98')
-rw-r--r-- | sys/pc98/i386/machdep.c | 4 | ||||
-rw-r--r-- | sys/pc98/pc98/machdep.c | 4 |
2 files changed, 0 insertions, 8 deletions
diff --git a/sys/pc98/i386/machdep.c b/sys/pc98/i386/machdep.c index 9031235..388db73 100644 --- a/sys/pc98/i386/machdep.c +++ b/sys/pc98/i386/machdep.c @@ -492,8 +492,6 @@ freebsd4_sendsig(catcher, sig, mask, code) sf.sf_si.si_signo = sig; sf.sf_si.si_code = code; sf.sf_si.si_addr = (void *)regs->tf_err; - sf.sf_si.si_pid = p->p_pid; - sf.sf_si.si_uid = p->p_ucred->cr_uid; } else { /* Old FreeBSD-style arguments. */ sf.sf_siginfo = code; @@ -629,8 +627,6 @@ sendsig(catcher, sig, mask, code) sf.sf_si.si_signo = sig; sf.sf_si.si_code = code; sf.sf_si.si_addr = (void *)regs->tf_err; - sf.sf_si.si_pid = p->p_pid; - sf.sf_si.si_uid = p->p_ucred->cr_uid; } else { /* Old FreeBSD-style arguments. */ sf.sf_siginfo = code; diff --git a/sys/pc98/pc98/machdep.c b/sys/pc98/pc98/machdep.c index 9031235..388db73 100644 --- a/sys/pc98/pc98/machdep.c +++ b/sys/pc98/pc98/machdep.c @@ -492,8 +492,6 @@ freebsd4_sendsig(catcher, sig, mask, code) sf.sf_si.si_signo = sig; sf.sf_si.si_code = code; sf.sf_si.si_addr = (void *)regs->tf_err; - sf.sf_si.si_pid = p->p_pid; - sf.sf_si.si_uid = p->p_ucred->cr_uid; } else { /* Old FreeBSD-style arguments. */ sf.sf_siginfo = code; @@ -629,8 +627,6 @@ sendsig(catcher, sig, mask, code) sf.sf_si.si_signo = sig; sf.sf_si.si_code = code; sf.sf_si.si_addr = (void *)regs->tf_err; - sf.sf_si.si_pid = p->p_pid; - sf.sf_si.si_uid = p->p_ucred->cr_uid; } else { /* Old FreeBSD-style arguments. */ sf.sf_siginfo = code; |