<feed xmlns='http://www.w3.org/2005/Atom'>
<title>src/include/stdio.h, branch release/6.0.0_cvs</title>
<subtitle>FreeBSD source tree</subtitle>
<id>https://cgit-dev.freebsd.org/src/atom?h=release%2F6.0.0_cvs</id>
<link rel='self' href='https://cgit-dev.freebsd.org/src/atom?h=release%2F6.0.0_cvs'/>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/'/>
<updated>2005-11-03T00:35:26Z</updated>
<entry>
<title>This commit was manufactured by cvs2svn to create tag</title>
<updated>2005-11-03T00:35:26Z</updated>
<author>
<name>cvs2svn</name>
<email>cvs2svn@FreeBSD.org</email>
</author>
<published>2005-11-03T00:35:26Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=3640cb54210edbb7edbf1b12ef0127ecfcea967d'/>
<id>urn:sha1:3640cb54210edbb7edbf1b12ef0127ecfcea967d</id>
<content type='text'>
'RELENG_6_0_0_RELEASE'.

This commit was manufactured to restore the state of the 6.0-RELEASE image.
</content>
</entry>
<entry>
<title>Remove outdated comments.</title>
<updated>2004-06-20T10:01:30Z</updated>
<author>
<name>Tim J. Robbins</name>
<email>tjr@FreeBSD.org</email>
</author>
<published>2004-06-20T10:01:30Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=8995b2315b3c9def7b1389134cbc2981c55834ae'/>
<id>urn:sha1:8995b2315b3c9def7b1389134cbc2981c55834ae</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Bring back the macro versions of getwc(), getwchar(), putwc() and</title>
<updated>2004-05-27T10:08:44Z</updated>
<author>
<name>Tim J. Robbins</name>
<email>tjr@FreeBSD.org</email>
</author>
<published>2004-05-27T10:08:44Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=84bb9aaa02a5ca406c7752949fcb499f974dafc4'/>
<id>urn:sha1:84bb9aaa02a5ca406c7752949fcb499f974dafc4</id>
<content type='text'>
putwchar(), but this time avoid redundantly declaring __stdinp and
__stdoutp when source files include both &lt;stdio.h&gt; and &lt;wchar.h&gt;.
</content>
</entry>
<entry>
<title>Parenthesize function names in masking macros for getc() etc. for the</title>
<updated>2004-03-20T11:45:52Z</updated>
<author>
<name>Tim J. Robbins</name>
<email>tjr@FreeBSD.org</email>
</author>
<published>2004-03-20T11:45:52Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=257982eb0f8f0522c17801795c3cbd011aea0574'/>
<id>urn:sha1:257982eb0f8f0522c17801795c3cbd011aea0574</id>
<content type='text'>
benefit of obsolete C preprocessors.
</content>
</entry>
<entry>
<title>Re-add macro versions of getc(), getchar(), putc(), putchar(), feof(),</title>
<updated>2004-03-17T01:43:08Z</updated>
<author>
<name>Tim J. Robbins</name>
<email>tjr@FreeBSD.org</email>
</author>
<published>2004-03-17T01:43:08Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=567d74a5eced82896bce42c1181f3335f45cbcac'/>
<id>urn:sha1:567d74a5eced82896bce42c1181f3335f45cbcac</id>
<content type='text'>
ferror(), fileno() and clearerr(), using the value of __isthreaded to
decide between the fast inline single-threaded code and the more
general function equivalent. This gives most of the performance
benefits of the old unsafe macros while preserving thread safety.
</content>
</entry>
<entry>
<title>Change the definition of NULL on ia64 (for LP64 compilations) from</title>
<updated>2003-12-07T21:10:06Z</updated>
<author>
<name>Marcel Moolenaar</name>
<email>marcel@FreeBSD.org</email>
</author>
<published>2003-12-07T21:10:06Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=12eb46c8bb2bf8a79a8151f4bd96aa7ce5bfe63d'/>
<id>urn:sha1:12eb46c8bb2bf8a79a8151f4bd96aa7ce5bfe63d</id>
<content type='text'>
an int constant to a long constant. This change improves consistency
in the following two ways:
1. The first 8 arguments are always passed in registers on ia64, which
   by virtue of the generated code implicitly widens ints to longs and
   allows the use of an 32-bit integral type for 64-bit arguments.
   Subsequent arguments are passed onto the memory stack, which does
   not exhibit the same behaviour and consequently do not allow this.
   In practice this means that variadic functions taking pointers
   and given NULL (without cast) work as long as the NULL is passed
   in one of the first 8 arguments. A SIGSEGV is more likely the
   result if such would be done for stack-based arguments. This is
   due to the fact that the upper 4 bytes remain undefined.
2. All 64-bit platforms that FreeBSD supports, with the obvious
   exception of ia64, allow 32-bit integral types (specifically NULL)
   when 64-bit pointers are expected in variadic functions by way of
   how the compiler generates code. As such, code that works correctly
   (whether rightfully so or not) on any platform other than ia64, may
   fail on ia64.

To more easily allow tweaking of the definition of NULL, this commit
removes the 12 definitions in the various headers and puts it in a
new header that can be included whenever NULL is to be made visible.

This commit fixes GNOME, emacs, xemacs and a whole bunch of ports
that I don't particularly care about at this time...
</content>
</entry>
<entry>
<title>Add prototypes for the non-standard _unlocked functions.</title>
<updated>2003-01-13T08:41:47Z</updated>
<author>
<name>Tim J. Robbins</name>
<email>tjr@FreeBSD.org</email>
</author>
<published>2003-01-13T08:41:47Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=e8065dc4910925e6e77858f49e6a533320ab34f9'/>
<id>urn:sha1:e8065dc4910925e6e77858f49e6a533320ab34f9</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Use a weak reference instead of a macro to make vfscanf an alias</title>
<updated>2002-10-14T11:18:21Z</updated>
<author>
<name>Tim J. Robbins</name>
<email>tjr@FreeBSD.org</email>
</author>
<published>2002-10-14T11:18:21Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=af1c9c0e4d69d542e6f079782cd3756588c15315'/>
<id>urn:sha1:af1c9c0e4d69d542e6f079782cd3756588c15315</id>
<content type='text'>
for __vfscanf.
</content>
</entry>
<entry>
<title>Add restrict type-qualifier.</title>
<updated>2002-10-12T16:13:41Z</updated>
<author>
<name>Mike Barcroft</name>
<email>mike@FreeBSD.org</email>
</author>
<published>2002-10-12T16:13:41Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=54e4e385de33a961e801ceeea8146437e25edd88'/>
<id>urn:sha1:54e4e385de33a961e801ceeea8146437e25edd88</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Zap the early-adopter transition aid before we get into serious</title>
<updated>2002-10-11T22:38:17Z</updated>
<author>
<name>Peter Wemm</name>
<email>peter@FreeBSD.org</email>
</author>
<published>2002-10-11T22:38:17Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=74a4ba21f78e3843e7efa512c4a2e4a002230c1d'/>
<id>urn:sha1:74a4ba21f78e3843e7efa512c4a2e4a002230c1d</id>
<content type='text'>
5.0-R territory, as threatened.  This only affects antique 5.0
systems that have not had a 'make world' done for well over a year.
</content>
</entry>
</feed>
