[Bug 247411] killall does not kill processes if -d is specified
bugzilla-noreply at freebsd.org
bugzilla-noreply at freebsd.org
Fri Jun 19 09:48:05 UTC 2020
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=247411
Bug ID: 247411
Summary: killall does not kill processes if -d is specified
Product: Base System
Version: CURRENT
Hardware: Any
OS: Any
Status: New
Severity: Affects Only Me
Priority: ---
Component: bin
Assignee: bugs at FreeBSD.org
Reporter: 0mp at FreeBSD.org
Here's a code example
```
$ sleep 1 & killall -d sleep
[1] 13393
uid:1001
nprocs 64
sig:15, cmd:sleep, pid:13393, dev:0x2e6 uid:1001
$ jobs
[1] Done sleep 1
```
As we can see, sleep is not getting killed if -d is specified.
It works fine with -v, however:
```
$ sleep 1 & killall -v sleep
kill -TERM 19067
[1] Terminated sleep 1
```
Is this a desired behavior?
--
You are receiving this mail because:
You are the assignee for the bug.
More information about the freebsd-bugs
mailing list