diff options
| author | David Xu <davidxu@FreeBSD.org> | 2005-11-03 01:38:49 +0000 |
|---|---|---|
| committer | David Xu <davidxu@FreeBSD.org> | 2005-11-03 01:38:49 +0000 |
| commit | d1f16b4d2ef3ad0a9936f92338354d00cc9af3eb (patch) | |
| tree | eb182bc35964f1757ca62a5a106c5930f9f6c21d | |
| parent | 44355392b440219f792eb3ba326fc3aa0a63bd1f (diff) | |
Notes
| -rw-r--r-- | sys/kern/kern_thr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/kern/kern_thr.c b/sys/kern/kern_thr.c index 6b676722ac372..1b19533a0f32f 100644 --- a/sys/kern/kern_thr.c +++ b/sys/kern/kern_thr.c @@ -321,7 +321,7 @@ thr_kill(struct thread *td, struct thr_kill_args *uap) error = EINVAL; goto out; } - tdsignal(p, ttd, uap->sig, NULL); + tdsignal(ttd, uap->sig, NULL, SIGTARGET_TD); out: PROC_UNLOCK(p); return (error); |
