Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 19 Jun 2020 09:48:05 +0000
From:      bugzilla-noreply@freebsd.org
To:        bugs@FreeBSD.org
Subject:   [Bug 247411] killall does not kill processes if -d is specified
Message-ID:  <bug-247411-227@https.bugs.freebsd.org/bugzilla/>

next in thread | raw e-mail | index | archive | help
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D247411

            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@FreeBSD.org
          Reporter: 0mp@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?

--=20
You are receiving this mail because:
You are the assignee for the bug.=



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?bug-247411-227>