<feed xmlns='http://www.w3.org/2005/Atom'>
<title>src-test2/usr.bin/pkill, branch releng/6.4</title>
<subtitle>FreeBSD source tree</subtitle>
<id>https://cgit-dev.freebsd.org/src-test2/atom?h=releng%2F6.4</id>
<link rel='self' href='https://cgit-dev.freebsd.org/src-test2/atom?h=releng%2F6.4'/>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/'/>
<updated>2007-01-05T14:03:21Z</updated>
<entry>
<title>MFC pkill(1) totally.  Besides bugfixes, this brings in the following</title>
<updated>2007-01-05T14:03:21Z</updated>
<author>
<name>Yaroslav Tykhiy</name>
<email>ytykhiy@gmail.com</email>
</author>
<published>2007-01-05T14:03:21Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/commit/?id=a3dca515afaa1ca7874c59b5151b154c859277f3'/>
<id>urn:sha1:a3dca515afaa1ca7874c59b5151b154c859277f3</id>
<content type='text'>
visible changes:

* a new option -I for interactive killing;
* a new syntax for jail wildcards: -j any, -j none; -j0 is deprecated now.

MFC the regression tests for pkill(1), too, to make sure it works well.

Approved by:	gad, pjd, re
Tested by:	the regression tests
</content>
</entry>
<entry>
<title>MFC rev 1.6, 1.7:</title>
<updated>2006-09-01T14:32:35Z</updated>
<author>
<name>Yaroslav Tykhiy</name>
<email>ytykhiy@gmail.com</email>
</author>
<published>2006-09-01T14:32:35Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/commit/?id=53717bf111abd18a00a8b416c313d32bb268b35a'/>
<id>urn:sha1:53717bf111abd18a00a8b416c313d32bb268b35a</id>
<content type='text'>
Install pkill/pgrep to /bin to the benefit of rc scripts.
Create compatibility symlinks from /usr/bin though.

Approved by:	re (mux &amp; kensmith)
</content>
</entry>
<entry>
<title>MFC pidfile(3) function, and convert several applications to make use</title>
<updated>2006-01-15T17:50:38Z</updated>
<author>
<name>Xin LI</name>
<email>delphij@FreeBSD.org</email>
</author>
<published>2006-01-15T17:50:38Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/commit/?id=6d94903ba024205ce03d50ff5b5212b74084a85d'/>
<id>urn:sha1:6d94903ba024205ce03d50ff5b5212b74084a85d</id>
<content type='text'>
of it.

Bump __FreeBSDversion for the MFC.

Discussed with:	pjd
</content>
</entry>
<entry>
<title>Markup and wording fixes.</title>
<updated>2005-06-14T11:50:53Z</updated>
<author>
<name>Ruslan Ermilov</name>
<email>ru@FreeBSD.org</email>
</author>
<published>2005-06-14T11:50:53Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/commit/?id=39c59153e929e3e663fe0efd645faa06f6c8b48e'/>
<id>urn:sha1:39c59153e929e3e663fe0efd645faa06f6c8b48e</id>
<content type='text'>
Approved by:	re (blanket)
</content>
</entry>
<entry>
<title>Whitespace fixes.</title>
<updated>2005-03-20T11:47:44Z</updated>
<author>
<name>Pawel Jakub Dawidek</name>
<email>pjd@FreeBSD.org</email>
</author>
<published>2005-03-20T11:47:44Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/commit/?id=d0cf19a1611c9359fbb0e31152ff49a0faa9c5f6'/>
<id>urn:sha1:d0cf19a1611c9359fbb0e31152ff49a0faa9c5f6</id>
<content type='text'>
</content>
</entry>
<entry>
<title>- Introduce an '-o' option which allows to match oldest of the matching</title>
<updated>2005-03-20T11:42:26Z</updated>
<author>
<name>Pawel Jakub Dawidek</name>
<email>pjd@FreeBSD.org</email>
</author>
<published>2005-03-20T11:42:26Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/commit/?id=0a5f326cd24818e9660f381fc30bc1689edc2839'/>
<id>urn:sha1:0a5f326cd24818e9660f381fc30bc1689edc2839</id>
<content type='text'>
  processes.
  This option can be also found in Solaris and Linux.
- Use timercmp(9) macro for timeval comparsion.
- Include time.h directly, don't depend on stat.h doing it for us.

Reviewed by:	gad (first point)
MFC after:	3 days
</content>
</entry>
<entry>
<title>- Introduce '-S' option which allows to match system processes (pgrep only).</title>
<updated>2005-03-20T11:30:26Z</updated>
<author>
<name>Pawel Jakub Dawidek</name>
<email>pjd@FreeBSD.org</email>
</author>
<published>2005-03-20T11:30:26Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/commit/?id=d054f5d7cd96b0b19dcdcd3d268ac711b56ed19a'/>
<id>urn:sha1:d054f5d7cd96b0b19dcdcd3d268ac711b56ed19a</id>
<content type='text'>
- Rename IS_KERNPROC() macro to PSKIP() and extend its functionality.
  Now it'll skip calling process and system processes when -S is not given.
  As a side effect it fixes '-n' option. Before it was always matching
  calling process (because of missing 'if (kp-&gt;ki_pid == mypid)' check)
  and after that, calling process was ignored.
- When '-l' option is given and there are no arguments, use p_comm as an
  arguments list (this is helpful for kernel threads matching).

Reviewed by:	gad
MFC after:	3 days
</content>
</entry>
<entry>
<title>Sort options properly.</title>
<updated>2005-03-20T11:17:06Z</updated>
<author>
<name>Pawel Jakub Dawidek</name>
<email>pjd@FreeBSD.org</email>
</author>
<published>2005-03-20T11:17:06Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/commit/?id=b94b78867e70a3c9c9493cbce6556e9bc0d760e0'/>
<id>urn:sha1:b94b78867e70a3c9c9493cbce6556e9bc0d760e0</id>
<content type='text'>
Reviewed by:	gad
MFC after:	3 days
</content>
</entry>
<entry>
<title>Add a -i option to ignore case in the process match.</title>
<updated>2005-03-20T11:12:13Z</updated>
<author>
<name>Pawel Jakub Dawidek</name>
<email>pjd@FreeBSD.org</email>
</author>
<published>2005-03-20T11:12:13Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/commit/?id=46a4b46cd753114e515e0ffbeb18fee6564e3cfa'/>
<id>urn:sha1:46a4b46cd753114e515e0ffbeb18fee6564e3cfa</id>
<content type='text'>
Obtained from:	NetBSD
Reviewed by:	gad
MFC after:	3 days
</content>
</entry>
<entry>
<title>Add and document '-F' option which allows to use file where PID is stored</title>
<updated>2005-03-20T11:03:11Z</updated>
<author>
<name>Pawel Jakub Dawidek</name>
<email>pjd@FreeBSD.org</email>
</author>
<published>2005-03-20T11:03:11Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/commit/?id=87a8221aebd79396d7684fb23c163a43e92f9ece'/>
<id>urn:sha1:87a8221aebd79396d7684fb23c163a43e92f9ece</id>
<content type='text'>
for matching.

Reviewed by:	gad
MFC after:	3 days
</content>
</entry>
</feed>
