<feed xmlns='http://www.w3.org/2005/Atom'>
<title>musl/src/stdio, branch v0.7.6</title>
<subtitle>musl - an implementation of the standard library for Linux-based systems</subtitle>
<link rel='alternate' type='text/html' href='http://git.musl-libc.org/cgit/musl/'/>
<entry>
<title>simplify vdprintf implementation greatly based on recent vfprintf changes</title>
<updated>2011-04-04T20:30:39+00:00</updated>
<author>
<name>Rich Felker</name>
<email>dalias@aerifal.cx</email>
</author>
<published>2011-04-04T20:30:39+00:00</published>
<link rel='alternate' type='text/html' href='http://git.musl-libc.org/cgit/musl/commit/?id=98c5583ad5d633166e28034c0a3544ad48b532b6'/>
<id>98c5583ad5d633166e28034c0a3544ad48b532b6</id>
<content type='text'>
since vfprintf will provide a temporary buffer in the case where the
target FILE has a zero buffer size, don't bother setting up a real
buffer for vdprintf. this also allows us to skip the call to fflush
since we know everything will be written out before vfprintf returns.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
since vfprintf will provide a temporary buffer in the case where the
target FILE has a zero buffer size, don't bother setting up a real
buffer for vdprintf. this also allows us to skip the call to fflush
since we know everything will be written out before vfprintf returns.
</pre>
</div>
</content>
</entry>
<entry>
<title>use a local temp buffer for unbuffered streams in vfprintf</title>
<updated>2011-04-04T20:24:49+00:00</updated>
<author>
<name>Rich Felker</name>
<email>dalias@aerifal.cx</email>
</author>
<published>2011-04-04T20:24:49+00:00</published>
<link rel='alternate' type='text/html' href='http://git.musl-libc.org/cgit/musl/commit/?id=bd57e2b43a5b56c00a82adbde0e33e5820c81164'/>
<id>bd57e2b43a5b56c00a82adbde0e33e5820c81164</id>
<content type='text'>
this change makes it so most calls to fprintf(stderr, ...) will result
in a single writev syscall, as opposed to roughly 2*N syscalls (and
possibly more) where N is the number of format specifiers. in
principle we could use a much larger buffer, but it's best not to
increase the stack requirements too much. most messages are under 80
chars.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
this change makes it so most calls to fprintf(stderr, ...) will result
in a single writev syscall, as opposed to roughly 2*N syscalls (and
possibly more) where N is the number of format specifiers. in
principle we could use a much larger buffer, but it's best not to
increase the stack requirements too much. most messages are under 80
chars.
</pre>
</div>
</content>
</entry>
<entry>
<title>don't disable seeking after first seek failure</title>
<updated>2011-04-02T17:55:54+00:00</updated>
<author>
<name>Rich Felker</name>
<email>dalias@aerifal.cx</email>
</author>
<published>2011-04-02T17:55:54+00:00</published>
<link rel='alternate' type='text/html' href='http://git.musl-libc.org/cgit/musl/commit/?id=8de03e1a90e60f62806c488cfa4985f99e869f87'/>
<id>8de03e1a90e60f62806c488cfa4985f99e869f87</id>
<content type='text'>
this could cause problems if the application uses dup2(fd,fileno(f))
to redirect, and the old fd was not seekable but the new fd is.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
this could cause problems if the application uses dup2(fd,fileno(f))
to redirect, and the old fd was not seekable but the new fd is.
</pre>
</div>
</content>
</entry>
<entry>
<title>apparently fseek should not set the error flag on failed seek</title>
<updated>2011-04-02T17:54:55+00:00</updated>
<author>
<name>Rich Felker</name>
<email>dalias@aerifal.cx</email>
</author>
<published>2011-04-02T17:54:55+00:00</published>
<link rel='alternate' type='text/html' href='http://git.musl-libc.org/cgit/musl/commit/?id=9a909fcd915c65628931dcf6e7b34f261e39e3a3'/>
<id>9a909fcd915c65628931dcf6e7b34f261e39e3a3</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>fix tempnam name generation, and a small bug in tmpnam on retry limit</title>
<updated>2011-03-29T13:00:22+00:00</updated>
<author>
<name>Rich Felker</name>
<email>dalias@aerifal.cx</email>
</author>
<published>2011-03-29T13:00:22+00:00</published>
<link rel='alternate' type='text/html' href='http://git.musl-libc.org/cgit/musl/commit/?id=8250742b90b8b54e642fa9201bf0cf8b7c27bbb8'/>
<id>8250742b90b8b54e642fa9201bf0cf8b7c27bbb8</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>make tmpfile fail after exceeding max tries.</title>
<updated>2011-03-29T12:37:57+00:00</updated>
<author>
<name>Rich Felker</name>
<email>dalias@aerifal.cx</email>
</author>
<published>2011-03-29T12:37:57+00:00</published>
<link rel='alternate' type='text/html' href='http://git.musl-libc.org/cgit/musl/commit/?id=a88edbec15abe3c8e08d5065d8bea399898e757c'/>
<id>a88edbec15abe3c8e08d5065d8bea399898e757c</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>fix tmpnam to generate better names, not depend on non-ISO-C symbols</title>
<updated>2011-03-29T12:34:47+00:00</updated>
<author>
<name>Rich Felker</name>
<email>dalias@aerifal.cx</email>
</author>
<published>2011-03-29T12:34:47+00:00</published>
<link rel='alternate' type='text/html' href='http://git.musl-libc.org/cgit/musl/commit/?id=507a9fa6ff9948eb7d858467b7be2cb1dcf15d03'/>
<id>507a9fa6ff9948eb7d858467b7be2cb1dcf15d03</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>fix messed-up errno if remove fails for a non-EISDIR reason</title>
<updated>2011-03-29T12:25:59+00:00</updated>
<author>
<name>Rich Felker</name>
<email>dalias@aerifal.cx</email>
</author>
<published>2011-03-29T12:25:59+00:00</published>
<link rel='alternate' type='text/html' href='http://git.musl-libc.org/cgit/musl/commit/?id=9646e4d024c05332c9653419abd6c41fdd48a33b'/>
<id>9646e4d024c05332c9653419abd6c41fdd48a33b</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>learned something new - remove is supposed to support directories on POSIX</title>
<updated>2011-03-29T12:24:28+00:00</updated>
<author>
<name>Rich Felker</name>
<email>dalias@aerifal.cx</email>
</author>
<published>2011-03-29T12:24:28+00:00</published>
<link rel='alternate' type='text/html' href='http://git.musl-libc.org/cgit/musl/commit/?id=0b240ccf523b9af23dd1efa78274f397fcc90cdd'/>
<id>0b240ccf523b9af23dd1efa78274f397fcc90cdd</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>revert some more spin optimizations that turned out to be pessimizations</title>
<updated>2011-03-29T02:36:55+00:00</updated>
<author>
<name>Rich Felker</name>
<email>dalias@aerifal.cx</email>
</author>
<published>2011-03-29T02:36:55+00:00</published>
<link rel='alternate' type='text/html' href='http://git.musl-libc.org/cgit/musl/commit/?id=4106cdcd2de34bf3b9839e042344d92eae887ecb'/>
<id>4106cdcd2de34bf3b9839e042344d92eae887ecb</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
