<feed xmlns='http://www.w3.org/2005/Atom'>
<title>src/usr.bin/killall, branch releng/10.4</title>
<subtitle>FreeBSD source tree</subtitle>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/'/>
<entry>
<title>MFC r260800:</title>
<updated>2014-11-13T16:40:15+00:00</updated>
<author>
<name>Steven Hartland</name>
<email>smh@FreeBSD.org</email>
</author>
<published>2014-11-13T16:40:15+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=c1e8abe81b0b22ed8a3d47fc6113be3df50c1264'/>
<id>c1e8abe81b0b22ed8a3d47fc6113be3df50c1264</id>
<content type='text'>
Fix a regression introduced in r237618

MFC r260801:
Re-work r260800 to include other signals which start with 'I'
such as ILL, INFO etc.

Sponsored by:	Multiplay
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Fix a regression introduced in r237618

MFC r260801:
Re-work r260800 to include other signals which start with 'I'
such as ILL, INFO etc.

Sponsored by:	Multiplay
</pre>
</div>
</content>
</entry>
<entry>
<title>killall: add -q flag to suppress error message when no processes are matched</title>
<updated>2013-06-30T20:27:31+00:00</updated>
<author>
<name>Mateusz Guzik</name>
<email>mjg@FreeBSD.org</email>
</author>
<published>2013-06-30T20:27:31+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=214e08782bc71b5a9a5e997274e25acbb60764fc'/>
<id>214e08782bc71b5a9a5e997274e25acbb60764fc</id>
<content type='text'>
Man-page text provided by wblock.

PR:		bin/30542
Submitted by:	Tony Finch &lt;dot@dotat.at&gt; (original version)
MFC after:	1 week
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Man-page text provided by wblock.

PR:		bin/30542
Submitted by:	Tony Finch &lt;dot@dotat.at&gt; (original version)
MFC after:	1 week
</pre>
</div>
</content>
</entry>
<entry>
<title>Once in a month, when the moon is full, killall mistakenly considers</title>
<updated>2012-06-30T16:36:22+00:00</updated>
<author>
<name>Konstantin Belousov</name>
<email>kib@FreeBSD.org</email>
</author>
<published>2012-06-30T16:36:22+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=c517bc15027a6c36a885b7118c72e9f0a00b016b'/>
<id>c517bc15027a6c36a885b7118c72e9f0a00b016b</id>
<content type='text'>
living process as a zombie and refuses to kill it. The cause is that
the code masks ki_stat with SZOMB to compare with SZOMB, but ki_stat
is not a mask.

Possibly reported by:	cperciva
MFC after:	3 days
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
living process as a zombie and refuses to kill it. The cause is that
the code masks ki_stat with SZOMB to compare with SZOMB, but ki_stat
is not a mask.

Possibly reported by:	cperciva
MFC after:	3 days
</pre>
</div>
</content>
</entry>
<entry>
<title>killall(1) does not use libkvm.</title>
<updated>2012-06-30T16:23:08+00:00</updated>
<author>
<name>Konstantin Belousov</name>
<email>kib@FreeBSD.org</email>
</author>
<published>2012-06-30T16:23:08+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=407e615c6813f0b11e57016bf47697654f8a9df9'/>
<id>407e615c6813f0b11e57016bf47697654f8a9df9</id>
<content type='text'>
MFC after:	3 days
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
MFC after:	3 days
</pre>
</div>
</content>
</entry>
<entry>
<title>Only initialize array of mibs once.</title>
<updated>2012-06-30T16:21:51+00:00</updated>
<author>
<name>Konstantin Belousov</name>
<email>kib@FreeBSD.org</email>
</author>
<published>2012-06-30T16:21:51+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=a488a0f1d2686603207a7fbcafc960eb85a8ed69'/>
<id>a488a0f1d2686603207a7fbcafc960eb85a8ed69</id>
<content type='text'>
MFC after:	3 days
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
MFC after:	3 days
</pre>
</div>
</content>
</entry>
<entry>
<title>Initialize procs closer to the place were it is used.</title>
<updated>2012-06-30T16:20:01+00:00</updated>
<author>
<name>Konstantin Belousov</name>
<email>kib@FreeBSD.org</email>
</author>
<published>2012-06-30T16:20:01+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=40bcb503f1a8b9885072a7dc1cb41c2cc462469c'/>
<id>40bcb503f1a8b9885072a7dc1cb41c2cc462469c</id>
<content type='text'>
Free can properly handle NULL pointer (but keep free() call on the premise
that the code might be reused).
Show errno when realloc failed.

MFC after:	3 days
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Free can properly handle NULL pointer (but keep free() call on the premise
that the code might be reused).
Show errno when realloc failed.

MFC after:	3 days
</pre>
</div>
</content>
</entry>
<entry>
<title>Add a -I flag which requests confirmation before action, like what is done</title>
<updated>2012-06-27T00:50:25+00:00</updated>
<author>
<name>Xin LI</name>
<email>delphij@FreeBSD.org</email>
</author>
<published>2012-06-27T00:50:25+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=8d5ec3937c34b5fb3049b6d24abba97c009ce9d8'/>
<id>8d5ec3937c34b5fb3049b6d24abba97c009ce9d8</id>
<content type='text'>
in pkill(1).

MFC after:	2 weeks
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
in pkill(1).

MFC after:	2 weeks
</pre>
</div>
</content>
</entry>
<entry>
<title>mdoc: terminate quoted strings.</title>
<updated>2012-03-26T15:18:14+00:00</updated>
<author>
<name>Joel Dahl</name>
<email>joel@FreeBSD.org</email>
</author>
<published>2012-03-26T15:18:14+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=c2965cd1854b75e6a13cb4bd6759b71adc8d2a87'/>
<id>c2965cd1854b75e6a13cb4bd6759b71adc8d2a87</id>
<content type='text'>
Reviewed by:	brueffer
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Reviewed by:	brueffer
</pre>
</div>
</content>
</entry>
<entry>
<title>Simplify various code that allowed for sys_signame being lower case.</title>
<updated>2011-03-06T19:50:47+00:00</updated>
<author>
<name>Jilles Tjoelker</name>
<email>jilles@FreeBSD.org</email>
</author>
<published>2011-03-06T19:50:47+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=de555084834b10902e8333fdd76c93fa6f71be03'/>
<id>de555084834b10902e8333fdd76c93fa6f71be03</id>
<content type='text'>
This was changed in r218285.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This was changed in r218285.
</pre>
</div>
</content>
</entry>
<entry>
<title>Make sys_signame upper case.</title>
<updated>2011-02-04T16:40:50+00:00</updated>
<author>
<name>Jilles Tjoelker</name>
<email>jilles@FreeBSD.org</email>
</author>
<published>2011-02-04T16:40:50+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=12dacf622b5b8b31e2bcca0bebc9d3dba4755a83'/>
<id>12dacf622b5b8b31e2bcca0bebc9d3dba4755a83</id>
<content type='text'>
This matches the constants from &lt;signal.h&gt; with 'SIG' removed, which POSIX
requires kill and trap to accept and 'kill -l' to write.

'kill -l', 'trap', 'trap -l' output is now upper case.

In Turkish locales, signal names with an upper case 'I' are now accepted,
while signal names with a lower case 'i' are no longer accepted, and the
output of 'killall -l' now contains proper capital 'I' without dot instead
of a dotted capital 'I'.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This matches the constants from &lt;signal.h&gt; with 'SIG' removed, which POSIX
requires kill and trap to accept and 'kill -l' to write.

'kill -l', 'trap', 'trap -l' output is now upper case.

In Turkish locales, signal names with an upper case 'I' are now accepted,
while signal names with a lower case 'i' are no longer accepted, and the
output of 'killall -l' now contains proper capital 'I' without dot instead
of a dotted capital 'I'.
</pre>
</div>
</content>
</entry>
</feed>
