<feed xmlns='http://www.w3.org/2005/Atom'>
<title>src-test2/lib/libc/gen/vis.c, branch release/5.3.0_cvs</title>
<subtitle>FreeBSD source tree</subtitle>
<id>https://cgit-dev.freebsd.org/src-test2/atom?h=release%2F5.3.0_cvs</id>
<link rel='self' href='https://cgit-dev.freebsd.org/src-test2/atom?h=release%2F5.3.0_cvs'/>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/'/>
<updated>2004-11-04T19:12:42Z</updated>
<entry>
<title>This commit was manufactured by cvs2svn to create tag</title>
<updated>2004-11-04T19:12:42Z</updated>
<author>
<name>cvs2svn</name>
<email>cvs2svn@FreeBSD.org</email>
</author>
<published>2004-11-04T19:12:42Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/commit/?id=3f86d8a2ea3f3265afaa1fd263b0004c5c000e69'/>
<id>urn:sha1:3f86d8a2ea3f3265afaa1fd263b0004c5c000e69</id>
<content type='text'>
'RELENG_5_3_0_RELEASE'.

This commit was manufactured to restore the state of the 5.3-RELEASE image.
</content>
</entry>
<entry>
<title>Add '#' to the characters VIS_GLOB encodes.  This fixes a bug in mtree.</title>
<updated>2003-10-30T12:41:50Z</updated>
<author>
<name>Poul-Henning Kamp</name>
<email>phk@FreeBSD.org</email>
</author>
<published>2003-10-30T12:41:50Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/commit/?id=b778a323749fc84565042563b4ad7c15003d4cf3'/>
<id>urn:sha1:b778a323749fc84565042563b4ad7c15003d4cf3</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Add a new flag to vis(3): VIS_GLOB which encodes the glob(3) magic</title>
<updated>2003-10-30T10:40:49Z</updated>
<author>
<name>Poul-Henning Kamp</name>
<email>phk@FreeBSD.org</email>
</author>
<published>2003-10-30T10:40:49Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/commit/?id=347fb1d46e6d1b92d273bd41be1294704a7132ad'/>
<id>urn:sha1:347fb1d46e6d1b92d273bd41be1294704a7132ad</id>
<content type='text'>
characters '*', '?' and '['.
</content>
</entry>
<entry>
<title>s/trailing NULL/trailing NUL/</title>
<updated>2002-08-19T17:14:58Z</updated>
<author>
<name>Juli Mallett</name>
<email>jmallett@FreeBSD.org</email>
</author>
<published>2002-08-19T17:14:58Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/commit/?id=a10a751f68ca086ec6b51ef495ba06b1a8dc2f6f'/>
<id>urn:sha1:a10a751f68ca086ec6b51ef495ba06b1a8dc2f6f</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Assume __STDC__, remove non-__STDC__ code.</title>
<updated>2002-05-28T17:03:12Z</updated>
<author>
<name>Alfred Perlstein</name>
<email>alfred@FreeBSD.org</email>
</author>
<published>2002-05-28T17:03:12Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/commit/?id=a82bbc730e20fe9dec4abeb1d949b2d02869032a'/>
<id>urn:sha1:a82bbc730e20fe9dec4abeb1d949b2d02869032a</id>
<content type='text'>
Submitted by: keramida
</content>
</entry>
<entry>
<title>* Remove 'register'.  (some functions had 7+ register functions...)</title>
<updated>2002-02-01T01:08:48Z</updated>
<author>
<name>David E. O'Brien</name>
<email>obrien@FreeBSD.org</email>
</author>
<published>2002-02-01T01:08:48Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/commit/?id=22626efa0f96cbca4edae882e46cb56b1879706b'/>
<id>urn:sha1:22626efa0f96cbca4edae882e46cb56b1879706b</id>
<content type='text'>
* Fix SCM ID's.
</content>
</entry>
<entry>
<title>Remove _THREAD_SAFE and make libc thread-safe by default by</title>
<updated>2001-01-24T13:01:12Z</updated>
<author>
<name>Daniel Eischen</name>
<email>deischen@FreeBSD.org</email>
</author>
<published>2001-01-24T13:01:12Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/commit/?id=d201fe46e355212750b727061e6a7ac005267852'/>
<id>urn:sha1:d201fe46e355212750b727061e6a7ac005267852</id>
<content type='text'>
adding (weak definitions to) stubs for some of the pthread
functions.  If the threads library is linked in, the real
pthread functions will pulled in.

Use the following convention for system calls wrapped by the
threads library:
	__sys_foo - actual system call
	_foo - weak definition to __sys_foo
	foo - weak definition to __sys_foo

Change all libc uses of system calls wrapped by the threads
library from foo to _foo.  In order to define the prototypes
for _foo(), we introduce namespace.h and un-namespace.h
(suggested by bde).  All files that need to reference these
system calls, should include namespace.h before any standard
includes, then include un-namespace.h after the standard
includes and before any local includes.  &lt;db.h&gt; is an exception
and shouldn't be included in between namespace.h and
un-namespace.h  namespace.h will define foo to _foo, and
un-namespace.h will undefine foo.

Try to eliminate some of the recursive calls to MT-safe
functions in libc/stdio in preparation for adding a mutex
to FILE.  We have recursive mutexes, but would like to avoid
using them if possible.

Remove uneeded includes of &lt;errno.h&gt; from a few files.

Add $FreeBSD$ to a few files in order to pass commitprep.

Approved by:	-arch
</content>
</entry>
<entry>
<title>Style fixes.</title>
<updated>2000-07-01T17:49:34Z</updated>
<author>
<name>Dan Moschuk</name>
<email>dan@FreeBSD.org</email>
</author>
<published>2000-07-01T17:49:34Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/commit/?id=d81584ae91c4bcaf4e7becf7a88da81e18629531'/>
<id>urn:sha1:d81584ae91c4bcaf4e7becf7a88da81e18629531</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Add URI encoding to the vis/unvis routines courtesy of VIS_HTTPSTYLE.</title>
<updated>2000-07-01T15:55:49Z</updated>
<author>
<name>Dan Moschuk</name>
<email>dan@FreeBSD.org</email>
</author>
<published>2000-07-01T15:55:49Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/commit/?id=e63a7af50876fa33597214b4eefe5f64e9401438'/>
<id>urn:sha1:e63a7af50876fa33597214b4eefe5f64e9401438</id>
<content type='text'>
Since alex is a -doc committer, he can update his own manpage. :-)

Also add $FreeBSD$ while I'm here.

Submitted by: alex
</content>
</entry>
<entry>
<title>General -Wall warning cleanup, part I.</title>
<updated>1996-07-12T18:57:58Z</updated>
<author>
<name>Jordan K. Hubbard</name>
<email>jkh@FreeBSD.org</email>
</author>
<published>1996-07-12T18:57:58Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/commit/?id=51295a4d3e4c551df85249433c490208dc7fd23d'/>
<id>urn:sha1:51295a4d3e4c551df85249433c490208dc7fd23d</id>
<content type='text'>
Submitted-By: Kent Vander Velden &lt;graphix@iastate.edu&gt;
</content>
</entry>
</feed>
