<feed xmlns='http://www.w3.org/2005/Atom'>
<title>src-test2/lib/libc/stdio, branch release/4.0.0_cvs</title>
<subtitle>FreeBSD source tree</subtitle>
<id>https://cgit-dev.freebsd.org/src-test2/atom?h=release%2F4.0.0_cvs</id>
<link rel='self' href='https://cgit-dev.freebsd.org/src-test2/atom?h=release%2F4.0.0_cvs'/>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/'/>
<updated>2000-03-20T08:47:53Z</updated>
<entry>
<title>This commit was manufactured by cvs2svn to create tag</title>
<updated>2000-03-20T08:47:53Z</updated>
<author>
<name>cvs2svn</name>
<email>cvs2svn@FreeBSD.org</email>
</author>
<published>2000-03-20T08:47:53Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/commit/?id=7e6cd705f344de2f9f08475a0fa2ef9191f88dd0'/>
<id>urn:sha1:7e6cd705f344de2f9f08475a0fa2ef9191f88dd0</id>
<content type='text'>
'RELENG_4_0_0_RELEASE'.

This commit was manufactured to restore the state of the 4.0-RELEASE image.
Releases prior to 5.3-RELEASE are omitting the secure/ and crypto/ subdirs.
</content>
</entry>
<entry>
<title>Remove more single-space hard sentence breaks.</title>
<updated>2000-03-02T14:54:02Z</updated>
<author>
<name>Sheldon Hearn</name>
<email>sheldonh@FreeBSD.org</email>
</author>
<published>2000-03-02T14:54:02Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/commit/?id=4e86fcacf69e8dac21f67db61babdcae80903dc2'/>
<id>urn:sha1:4e86fcacf69e8dac21f67db61babdcae80903dc2</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Remove single-space hard sentence breaks.  These degrade the quality</title>
<updated>2000-03-02T09:14:21Z</updated>
<author>
<name>Sheldon Hearn</name>
<email>sheldonh@FreeBSD.org</email>
</author>
<published>2000-03-02T09:14:21Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/commit/?id=c6ff3a1bf74d96278726113478b2c66884aab584'/>
<id>urn:sha1:c6ff3a1bf74d96278726113478b2c66884aab584</id>
<content type='text'>
of the typeset output, tend to make diffs harder to read and provide
bad examples for new-comers to mdoc.
</content>
</entry>
<entry>
<title>Simplify sytem call renaming.  Instead of _foo() &lt;-- _libc_foo &lt;-- foo(),</title>
<updated>2000-01-27T23:07:25Z</updated>
<author>
<name>Jason Evans</name>
<email>jasone@FreeBSD.org</email>
</author>
<published>2000-01-27T23:07:25Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/commit/?id=9233c4d9426e03b28e043baeefb6d5a37dc4086e'/>
<id>urn:sha1:9233c4d9426e03b28e043baeefb6d5a37dc4086e</id>
<content type='text'>
just use _foo() &lt;-- foo().  In the case of a libpthread that doesn't do
call conversion (such as linuxthreads and our upcoming libpthread), this
is adequate.  In the case of libc_r, we still need three names, which are
now _thread_sys_foo() &lt;-- _foo() &lt;-- foo().

Convert all internal libc usage of: aio_suspend(), close(), fsync(), msync(),
nanosleep(), open(), fcntl(), read(), and write() to _foo() instead of foo().

Remove all internal libc usage of: creat(), pause(), sleep(), system(),
tcdrain(), wait(), and waitpid().

Make thread cancellation fully POSIX-compliant.

Suggested by:	deischen
</content>
</entry>
<entry>
<title>Improve the explanation on the (in)security of mktemp(3).</title>
<updated>2000-01-25T13:58:46Z</updated>
<author>
<name>Sheldon Hearn</name>
<email>sheldonh@FreeBSD.org</email>
</author>
<published>2000-01-25T13:58:46Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/commit/?id=71207448cf3eb42617320efb36e7aa9d76c4c98e'/>
<id>urn:sha1:71207448cf3eb42617320efb36e7aa9d76c4c98e</id>
<content type='text'>
</content>
</entry>
<entry>
<title>We no longer care about the VAX and Tahoe compilers :-)</title>
<updated>2000-01-17T01:28:00Z</updated>
<author>
<name>Kris Kennaway</name>
<email>kris@FreeBSD.org</email>
</author>
<published>2000-01-17T01:28:00Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/commit/?id=466c0416c8ef96f1d3c6fa8e79a4d24ac2f782c4'/>
<id>urn:sha1:466c0416c8ef96f1d3c6fa8e79a4d24ac2f782c4</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Add three-tier symbol naming in support of POSIX thread cancellation</title>
<updated>2000-01-12T09:23:48Z</updated>
<author>
<name>Jason Evans</name>
<email>jasone@FreeBSD.org</email>
</author>
<published>2000-01-12T09:23:48Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/commit/?id=929273386f6e688c008b15fd24932df2ed7e7172'/>
<id>urn:sha1:929273386f6e688c008b15fd24932df2ed7e7172</id>
<content type='text'>
points.  For library functions, the pattern is __sleep() &lt;--
_libc_sleep() &lt;-- sleep().  The arrows represent weak aliases.  For
system calls, the pattern is _read() &lt;-- _libc_read() &lt;-- read().
</content>
</entry>
<entry>
<title>Correct discrepancy between definition of argument to tempnam() and</title>
<updated>2000-01-09T08:54:03Z</updated>
<author>
<name>Kris Kennaway</name>
<email>kris@FreeBSD.org</email>
</author>
<published>2000-01-09T08:54:03Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/commit/?id=3076db1900b167e6af783f4166a055ff12962802'/>
<id>urn:sha1:3076db1900b167e6af783f4166a055ff12962802</id>
<content type='text'>
the name by which it is referenced in the text.
</content>
</entry>
<entry>
<title>While comparing this with OpenBSD (ie: trying to figure out what mkstemps()</title>
<updated>1999-12-11T14:48:24Z</updated>
<author>
<name>Peter Wemm</name>
<email>peter@FreeBSD.org</email>
</author>
<published>1999-12-11T14:48:24Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/commit/?id=5f02be00bca1a5821383c9593ffbd4155c6ef27e'/>
<id>urn:sha1:5f02be00bca1a5821383c9593ffbd4155c6ef27e</id>
<content type='text'>
is good for... :-)), I discovered that part of the change when mkstemps()
was brought in was missed - it was missing the termination case to make
sure it doesn't walk into the suffix.  This isn't the same code OpenBSD
has, I think this is a little better as we terminate the loop in a better
spot.
</content>
</entry>
<entry>
<title>Make __sfp() even more thread-safe.</title>
<updated>1999-11-21T22:34:57Z</updated>
<author>
<name>Dmitrij Tejblum</name>
<email>dt@FreeBSD.org</email>
</author>
<published>1999-11-21T22:34:57Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/commit/?id=dcd26325e8953b594d6d09dfb1f43a55e1717fad'/>
<id>urn:sha1:dcd26325e8953b594d6d09dfb1f43a55e1717fad</id>
<content type='text'>
</content>
</entry>
</feed>
