summaryrefslogtreecommitdiff
path: root/sys/kern/kern_sig.c
diff options
context:
space:
mode:
authorAlfred Perlstein <alfred@FreeBSD.org>2004-10-29 08:24:41 +0000
committerAlfred Perlstein <alfred@FreeBSD.org>2004-10-29 08:24:41 +0000
commitcd71c4147621ce4db70128ec07e2c280b236ef39 (patch)
tree7b40673de13fe3b47b459a0443a437c00cb4b967 /sys/kern/kern_sig.c
parent6afb3b1c3788dfa872172d553ce6f9e7b1f769e2 (diff)
Notes
Diffstat (limited to 'sys/kern/kern_sig.c')
-rw-r--r--sys/kern/kern_sig.c10
1 files changed, 0 insertions, 10 deletions
diff --git a/sys/kern/kern_sig.c b/sys/kern/kern_sig.c
index 3074950e284c..5220ab436ca9 100644
--- a/sys/kern/kern_sig.c
+++ b/sys/kern/kern_sig.c
@@ -1776,16 +1776,6 @@ do_tdsignal(struct thread *td, int sig, sigtarget_t target)
!((prop & SA_CONT) && (p->p_flag & P_STOPPED_SIG)))
return;
/*
- * SIGKILL: Remove procfs STOPEVENTs.
- */
- if (sig == SIGKILL) {
- /* from procfs_ioctl.c: PIOCBIC */
- p->p_stops = 0;
- /* from procfs_ioctl.c: PIOCCONT */
- p->p_step = 0;
- wakeup(&p->p_step);
- }
- /*
* Some signals have a process-wide effect and a per-thread
* component. Most processing occurs when the process next
* tries to cross the user boundary, however there are some