<feed xmlns='http://www.w3.org/2005/Atom'>
<title>musl/include/sys, branch v0.8.3</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>fix some header typos</title>
<updated>2011-09-21T00:02:48+00:00</updated>
<author>
<name>Rich Felker</name>
<email>dalias@aerifal.cx</email>
</author>
<published>2011-09-21T00:02:48+00:00</published>
<link rel='alternate' type='text/html' href='http://git.musl-libc.org/cgit/musl/commit/?id=fd9e01e92a5d665e5b6c3221cd67970038cf7a6c'/>
<id>fd9e01e92a5d665e5b6c3221cd67970038cf7a6c</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>fix the fsid_t structure to match name of __val</title>
<updated>2011-09-20T15:16:27+00:00</updated>
<author>
<name>Rich Felker</name>
<email>dalias@aerifal.cx</email>
</author>
<published>2011-09-20T15:16:27+00:00</published>
<link rel='alternate' type='text/html' href='http://git.musl-libc.org/cgit/musl/commit/?id=32b82cf5cdc282839cc02c57a50c991e376f0348'/>
<id>32b82cf5cdc282839cc02c57a50c991e376f0348</id>
<content type='text'>
this is a case of poorly written man pages not matching the actual
implementation, and why i hate implementing nonstandard interfaces
with no actual documentation of how they're intended to work.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
this is a case of poorly written man pages not matching the actual
implementation, and why i hate implementing nonstandard interfaces
with no actual documentation of how they're intended to work.
</pre>
</div>
</content>
</entry>
<entry>
<title>fix the definition of struct statvfs to match lsb abi</title>
<updated>2011-09-20T03:35:48+00:00</updated>
<author>
<name>Rich Felker</name>
<email>dalias@aerifal.cx</email>
</author>
<published>2011-09-20T03:35:48+00:00</published>
<link rel='alternate' type='text/html' href='http://git.musl-libc.org/cgit/musl/commit/?id=114c80f1416617399c85c2df09dd307532399903'/>
<id>114c80f1416617399c85c2df09dd307532399903</id>
<content type='text'>
at the same time, make struct statfs match the traditional definition
and make it more useful, especially the fsid_t stuff.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
at the same time, make struct statfs match the traditional definition
and make it more useful, especially the fsid_t stuff.
</pre>
</div>
</content>
</entry>
<entry>
<title>fix broken multi-inclusion guard in sys/reg.h</title>
<updated>2011-09-19T15:56:09+00:00</updated>
<author>
<name>Rich Felker</name>
<email>dalias@aerifal.cx</email>
</author>
<published>2011-09-19T15:56:09+00:00</published>
<link rel='alternate' type='text/html' href='http://git.musl-libc.org/cgit/musl/commit/?id=53431b091b22a663a428c67f8c617740f5882706'/>
<id>53431b091b22a663a428c67f8c617740f5882706</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>cleanup more bits cruft (sysmacros and socket)</title>
<updated>2011-09-18T20:34:13+00:00</updated>
<author>
<name>Rich Felker</name>
<email>dalias@aerifal.cx</email>
</author>
<published>2011-09-18T20:34:13+00:00</published>
<link rel='alternate' type='text/html' href='http://git.musl-libc.org/cgit/musl/commit/?id=b0c088ee550634e07a6289a8ac98cb8009f81c66'/>
<id>b0c088ee550634e07a6289a8ac98cb8009f81c66</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>implement ptrace syscall wrapper (untested)</title>
<updated>2011-09-15T17:03:13+00:00</updated>
<author>
<name>Rich Felker</name>
<email>dalias@aerifal.cx</email>
</author>
<published>2011-09-15T17:03:13+00:00</published>
<link rel='alternate' type='text/html' href='http://git.musl-libc.org/cgit/musl/commit/?id=71f7a3c2ce7377a6c77f46524002505b9454861b'/>
<id>71f7a3c2ce7377a6c77f46524002505b9454861b</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>fix broken FD_* macros on 64-bit targets</title>
<updated>2011-08-27T23:42:13+00:00</updated>
<author>
<name>Rich Felker</name>
<email>dalias@aerifal.cx</email>
</author>
<published>2011-08-27T23:42:13+00:00</published>
<link rel='alternate' type='text/html' href='http://git.musl-libc.org/cgit/musl/commit/?id=1f5ff26cd788d29c77e322e7584da46466723572'/>
<id>1f5ff26cd788d29c77e322e7584da46466723572</id>
<content type='text'>
1 is too small if int is 32-bit but unsigned long is 64-bit. be
explicit and use 1UL.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
1 is too small if int is 32-bit but unsigned long is 64-bit. be
explicit and use 1UL.
</pre>
</div>
</content>
</entry>
<entry>
<title>add missing signalfd flags</title>
<updated>2011-07-09T22:06:59+00:00</updated>
<author>
<name>Rich Felker</name>
<email>dalias@aerifal.cx</email>
</author>
<published>2011-07-09T22:06:59+00:00</published>
<link rel='alternate' type='text/html' href='http://git.musl-libc.org/cgit/musl/commit/?id=6b1d3817cfb5d2b9d3eb66667fba2bc8e87180ef'/>
<id>6b1d3817cfb5d2b9d3eb66667fba2bc8e87180ef</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>copy-paste error in prctl.h</title>
<updated>2011-06-18T11:39:05+00:00</updated>
<author>
<name>Rich Felker</name>
<email>dalias@aerifal.cx</email>
</author>
<published>2011-06-18T11:39:05+00:00</published>
<link rel='alternate' type='text/html' href='http://git.musl-libc.org/cgit/musl/commit/?id=5a2e74ebd2dc6d2fb3766662e68dcbc62e3e9081'/>
<id>5a2e74ebd2dc6d2fb3766662e68dcbc62e3e9081</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>fix some struct padding to match LSB/glibc ABI where it may be helpful</title>
<updated>2011-06-16T21:11:35+00:00</updated>
<author>
<name>Rich Felker</name>
<email>dalias@aerifal.cx</email>
</author>
<published>2011-06-16T21:11:35+00:00</published>
<link rel='alternate' type='text/html' href='http://git.musl-libc.org/cgit/musl/commit/?id=7f5471529c2f85ce528292ea5d4a146597d47588'/>
<id>7f5471529c2f85ce528292ea5d4a146597d47588</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
