aboutsummaryrefslogtreecommitdiff
path: root/procps/kill.c
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2006-11-01 20:20:37 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2006-11-01 20:20:37 +0000
commitdd539f76877000e333796da8f30ea760c080a69a (patch)
tree26f8642cd9e8cc1c2ca0b75a6b20801863b4e2cf /procps/kill.c
parent92258541449581302e180d05e827e27d35030a18 (diff)
downloadbusybox-dd539f76877000e333796da8f30ea760c080a69a.tar.gz
Unneeded code removed, usused field "unsigned pscpu" removed
Diffstat (limited to 'procps/kill.c')
-rw-r--r--procps/kill.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/procps/kill.c b/procps/kill.c
index f22bdbe46..1b31a7291 100644
--- a/procps/kill.c
+++ b/procps/kill.c
@@ -84,9 +84,10 @@ do_it_now:
pid_t sid;
procps_status_t* p;
- /* kill(-1, sig) on Linux (at least 2.1.x)
- * might send signal to the calling process too */
- signal(SIGTERM, SIG_IGN);
+// Cannot happen anyway? We don't TERM ourself, we STOP
+// /* kill(-1, sig) on Linux (at least 2.1.x)
+// * might send signal to the calling process too */
+// signal(SIGTERM, SIG_IGN);
/* Now stop all processes */
kill(-1, SIGSTOP);
/* Find out our own session id */