| Summary: | kill command missing -q option | ||
|---|---|---|---|
| Product: | Red Hat Enterprise Linux 7 | Reporter: | Arun Chandrasekaran <aruncxy> |
| Component: | util-linux | Assignee: | Karel Zak <kzak> |
| Status: | CLOSED NOTABUG | QA Contact: | qe-baseos-daemons |
| Severity: | unspecified | Docs Contact: | |
| Priority: | unspecified | ||
| Version: | 7.2 | CC: | lpol |
| Target Milestone: | rc | ||
| Target Release: | --- | ||
| Hardware: | Unspecified | ||
| OS: | Unspecified | ||
| Whiteboard: | |||
| Fixed In Version: | Doc Type: | If docs needed, set a value | |
| Doc Text: | Story Points: | --- | |
| Clone Of: | Environment: | ||
| Last Closed: | 2016-12-01 10:02:49 UTC | Type: | Bug |
| Regression: | --- | Mount Type: | --- |
| Documentation: | --- | CRM: | |
| Verified Versions: | Category: | --- | |
| oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |
| Cloudforms Team: | --- | Target Upstream Version: | |
|
Description
Arun Chandrasekaran
2016-11-20 00:57:20 UTC
Looks like HAVE_SIGQUEUE is never set to 1 anywhere in util-linux. 21-11-2016 10:09:38 arun-desk-r7 ~/code/personal/util-linux-2.29 $ grep HAVE_SIGQUEUE -rw . -n ./config.h.in:395:#undef HAVE_SIGQUEUE ./misc-utils/kill.c:74:#ifdef HAVE_SIGQUEUE ./misc-utils/kill.c:311:#ifdef HAVE_SIGQUEUE ./misc-utils/kill.c:388:#ifdef HAVE_SIGQUEUE ./misc-utils/kill.c:406:#ifdef HAVE_SIGQUEUE ./misc-utils/kill.c:453:#ifdef HAVE_SIGQUEUE 21-11-2016 10:09:44 arun-desk-r7 ~/code/personal/util-linux-2.29 > ~/$ kill
> kill: usage: kill [-s sigspec | -n signum | -sigspec] pid | jobspec ... or kill > -l [sigspec]
It seems like you're talking about shell built-in kill command rather than about util-linux kill binary, try
/usr/bin/kill --help
and it works for me:
# strace /usr/bin/kill --queue 123 --signal ALRM 31622
...
rt_sigqueueinfo(31622, SIGALRM, {si_signo=SIGALRM, si_code=SI_QUEUE, si_pid=31630, si_uid=0, si_value={int=123, ptr=0x7b00000000}}) = 0
...
# cat /etc/redhat-release
Red Hat Enterprise Linux Server release 7.3 (Maipo)
|