<feed xmlns='http://www.w3.org/2005/Atom'>
<title>src-test/usr.bin/systat/keyboard.c, branch releng/11.2</title>
<subtitle>FreeBSD source tree</subtitle>
<id>https://cgit-dev.freebsd.org/src-test/atom?h=releng%2F11.2</id>
<link rel='self' href='https://cgit-dev.freebsd.org/src-test/atom?h=releng%2F11.2'/>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test/'/>
<updated>2018-03-29T02:50:57Z</updated>
<entry>
<title>Revert r330897:</title>
<updated>2018-03-29T02:50:57Z</updated>
<author>
<name>Eitan Adler</name>
<email>eadler@FreeBSD.org</email>
</author>
<published>2018-03-29T02:50:57Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test/commit/?id=4ab2e064d7950be84256d671a7ae93f87cc6aa36'/>
<id>urn:sha1:4ab2e064d7950be84256d671a7ae93f87cc6aa36</id>
<content type='text'>
This was intended to be a non-functional change. It wasn't. The commit
message was thus wrong. In addition it broke arm, and merged crypto
related code.

Revert with prejudice.

This revert skips files touched in r316370 since that commit was since
MFCed. This revert also skips files that require $FreeBSD$ property
changes.

Thank you to those who helped me get out of this mess including but not
limited to gonzo, kevans, rgrimes.

Requested by: gjb (re)
</content>
</entry>
<entry>
<title>Partial merge of the SPDX changes</title>
<updated>2018-03-14T03:19:51Z</updated>
<author>
<name>Eitan Adler</name>
<email>eadler@FreeBSD.org</email>
</author>
<published>2018-03-14T03:19:51Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test/commit/?id=be5d0b9566b13fdf8cabebb63334cbec12bfc409'/>
<id>urn:sha1:be5d0b9566b13fdf8cabebb63334cbec12bfc409</id>
<content type='text'>
These changes are incomplete but are making it difficult
to determine what other changes can/should be merged.

No objections from:	pfg
</content>
</entry>
<entry>
<title>Make systat(1) accept fractional number of seconds.</title>
<updated>2012-09-17T13:36:47Z</updated>
<author>
<name>Alexander V. Chernikov</name>
<email>melifaro@FreeBSD.org</email>
</author>
<published>2012-09-17T13:36:47Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test/commit/?id=8b3daf895a629984a7c3ef5449c280288fd9dccb'/>
<id>urn:sha1:8b3daf895a629984a7c3ef5449c280288fd9dccb</id>
<content type='text'>
Make old alarm(3)-based code use select(2).

MFC after:	2 weeks
</content>
</entry>
<entry>
<title>Use integer to store the result of getch().</title>
<updated>2011-10-16T08:36:10Z</updated>
<author>
<name>Ed Schouten</name>
<email>ed@FreeBSD.org</email>
</author>
<published>2011-10-16T08:36:10Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test/commit/?id=03d26e9e382596420110a0bbe5207a0893e67b2b'/>
<id>urn:sha1:03d26e9e382596420110a0bbe5207a0893e67b2b</id>
<content type='text'>
We need to use an integer to make the comparison against ERR work.

MFC after:	3 months
</content>
</entry>
<entry>
<title>Fix whitespace inconsistencies in systat(1).</title>
<updated>2011-10-15T13:20:36Z</updated>
<author>
<name>Ed Schouten</name>
<email>ed@FreeBSD.org</email>
</author>
<published>2011-10-15T13:20:36Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test/commit/?id=2bd338d6c4bb3419ca8e4ce46e3472f545df25a4'/>
<id>urn:sha1:2bd338d6c4bb3419ca8e4ce46e3472f545df25a4</id>
<content type='text'>
According to md5(1), the resulting binary is the same.
</content>
</entry>
<entry>
<title>Remove the advertising clause from UCB copyrighted files in usr.bin.  This</title>
<updated>2010-12-11T08:32:16Z</updated>
<author>
<name>Joel Dahl</name>
<email>joel@FreeBSD.org</email>
</author>
<published>2010-12-11T08:32:16Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test/commit/?id=da52b4caaf187775f6b56a72c6b16e94ad728f7b'/>
<id>urn:sha1:da52b4caaf187775f6b56a72c6b16e94ad728f7b</id>
<content type='text'>
is in accordance with the information provided at
ftp://ftp.cs.berkeley.edu/pub/4bsd/README.Impt.License.Change

Also add $FreeBSD$ to a few files to keep svn happy.

Discussed with:	imp, rwatson
</content>
</entry>
<entry>
<title>- Catch SIGHUP to perform cleanup before exiting.</title>
<updated>2009-10-11T12:32:25Z</updated>
<author>
<name>Jaakko Heinonen</name>
<email>jh@FreeBSD.org</email>
</author>
<published>2009-10-11T12:32:25Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test/commit/?id=c2dbb0de277a3d3721f208be6756f9de746f93c8'/>
<id>urn:sha1:c2dbb0de277a3d3721f208be6756f9de746f93c8</id>
<content type='text'>
- Exit if getch() returns with an error other than EINTR. Otherwise
  systat(1) may get stuck in an infinite loop if it doesn't receive
  SIGHUP when terminal closes. [1]
- Remove attempt to clear stdio error indicators. getch() doesn't use
  stdio, making it useless. [2]
- Remove unneeded masking of getch() return value. [2]

PR:		bin/107171
Reviewed by:	bde
Approved by:	trasz (mentor)
Obtained from:	OpenBSD [1]
Suggested by:	bde [2]
MFC after:	1 month
</content>
</entry>
<entry>
<title>ANSIfy and remove register.</title>
<updated>2008-01-16T19:27:43Z</updated>
<author>
<name>Xin LI</name>
<email>delphij@FreeBSD.org</email>
</author>
<published>2008-01-16T19:27:43Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test/commit/?id=93b9f50404f9ef0fc00a5ed39ebe09b7cf4086bb'/>
<id>urn:sha1:93b9f50404f9ef0fc00a5ed39ebe09b7cf4086bb</id>
<content type='text'>
Resulting binary verified with strip(1)+md5(1).
</content>
</entry>
<entry>
<title>WARNS=2 fixes with NO_WERROR set, as there are some header issues</title>
<updated>2001-12-12T00:13:37Z</updated>
<author>
<name>Mark Murray</name>
<email>markm@FreeBSD.org</email>
</author>
<published>2001-12-12T00:13:37Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test/commit/?id=9ff712b0f5e27b68efdb47d863ab7ef8ee243a5b'/>
<id>urn:sha1:9ff712b0f5e27b68efdb47d863ab7ef8ee243a5b</id>
<content type='text'>
with namelists. use __FBSDID().
</content>
</entry>
<entry>
<title>BSD 4.4 Lite Usr.bin Sources</title>
<updated>1994-05-27T12:33:43Z</updated>
<author>
<name>Rodney W. Grimes</name>
<email>rgrimes@FreeBSD.org</email>
</author>
<published>1994-05-27T12:33:43Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test/commit/?id=9b50d9027575220cb6dd09b3e62f03f511e908b8'/>
<id>urn:sha1:9b50d9027575220cb6dd09b3e62f03f511e908b8</id>
<content type='text'>
</content>
</entry>
</feed>
