summaryrefslogtreecommitdiffstats
path: root/bin/kill
diff options
context:
space:
mode:
authorjilles <jilles@FreeBSD.org>2014-03-15 14:58:48 +0000
committerjilles <jilles@FreeBSD.org>2014-03-15 14:58:48 +0000
commit94dae0aff1dddebb566cf2f69548fd9f50be8c78 (patch)
treef8932801a36ad6f4a3bffeaa6e0fb25e14c758c1 /bin/kill
parentad4ea38baed6b320d50d678342cee3364eaf6692 (diff)
downloadFreeBSD-src-94dae0aff1dddebb566cf2f69548fd9f50be8c78.zip
FreeBSD-src-94dae0aff1dddebb566cf2f69548fd9f50be8c78.tar.gz
sh: Allow kill %job on jobs started without job control.
When killing a %job started without job control, kill all processes in it. As with process groups and zombies, if any process in the job can be killed or has already terminated, the command is successful. This also fixes occasional failures of the builtins/kill1.0 test.
Diffstat (limited to 'bin/kill')
-rw-r--r--bin/kill/kill.c17
1 files changed, 6 insertions, 11 deletions
diff --git a/bin/kill/kill.c b/bin/kill/kill.c
index ab1701e..b23c00a 100644
--- a/bin/kill/kill.c
+++ b/bin/kill/kill.c
@@ -67,7 +67,7 @@ static void usage(void);
int
main(int argc, char *argv[])
{
- int errors, numsig, pid;
+ int errors, numsig, pid, ret;
char *ep;
if (argc < 2)
@@ -133,22 +133,17 @@ main(int argc, char *argv[])
for (errors = 0; argc; argc--, argv++) {
#ifdef SHELL
- if (**argv == '%') {
- pid = getjobpgrp(*argv);
- /*
- * Silently ignore terminated jobs, like the kernel
- * silently ignores zombies.
- */
- if (pid == 0)
- continue;
- } else
+ if (**argv == '%')
+ ret = killjob(*argv, numsig);
+ else
#endif
{
pid = strtol(*argv, &ep, 10);
if (!**argv || *ep)
errx(2, "illegal process id: %s", *argv);
+ ret = kill(pid, numsig);
}
- if (kill(pid, numsig) == -1) {
+ if (ret == -1) {
warn("%s", *argv);
errors = 1;
}
OpenPOWER on IntegriCloud