<feed xmlns='http://www.w3.org/2005/Atom'>
<title>musl/include/sys, branch v0.7.0</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>fcntl.h should make availabel the mode constants from sys/stat.h</title>
<updated>2011-03-08T17:35:35+00:00</updated>
<author>
<name>Rich Felker</name>
<email>dalias@aerifal.cx</email>
</author>
<published>2011-03-08T17:35:35+00:00</published>
<link rel='alternate' type='text/html' href='http://git.musl-libc.org/cgit/musl/commit/?id=ac12eb91bd7aa6f1f1642de1350c4f29ea0f4d08'/>
<id>ac12eb91bd7aa6f1f1642de1350c4f29ea0f4d08</id>
<content type='text'>
also remove some legacy nonsense that crept in.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
also remove some legacy nonsense that crept in.
</pre>
</div>
</content>
</entry>
<entry>
<title>namespace cleanup in sys/mman.h</title>
<updated>2011-03-03T05:32:15+00:00</updated>
<author>
<name>Rich Felker</name>
<email>dalias@aerifal.cx</email>
</author>
<published>2011-03-03T05:32:15+00:00</published>
<link rel='alternate' type='text/html' href='http://git.musl-libc.org/cgit/musl/commit/?id=a53d2f3425aa32b5770b03acbab12d1df3af7226'/>
<id>a53d2f3425aa32b5770b03acbab12d1df3af7226</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>implement futimens and utimensat</title>
<updated>2011-02-27T08:48:57+00:00</updated>
<author>
<name>Rich Felker</name>
<email>dalias@aerifal.cx</email>
</author>
<published>2011-02-27T08:48:57+00:00</published>
<link rel='alternate' type='text/html' href='http://git.musl-libc.org/cgit/musl/commit/?id=eda8e9da763df3fd25fc6c78602d7c79296eae6b'/>
<id>eda8e9da763df3fd25fc6c78602d7c79296eae6b</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>cleanup namespace in sys/time.h</title>
<updated>2011-02-27T08:48:19+00:00</updated>
<author>
<name>Rich Felker</name>
<email>dalias@aerifal.cx</email>
</author>
<published>2011-02-27T08:48:19+00:00</published>
<link rel='alternate' type='text/html' href='http://git.musl-libc.org/cgit/musl/commit/?id=b1b465c4382d6956e2973b70d644b0c20f530430'/>
<id>b1b465c4382d6956e2973b70d644b0c20f530430</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>include sys/sysmacros.h from sys/types.h when _GNU_SOURCE is defined</title>
<updated>2011-02-20T21:34:10+00:00</updated>
<author>
<name>Rich Felker</name>
<email>dalias@aerifal.cx</email>
</author>
<published>2011-02-20T21:34:10+00:00</published>
<link rel='alternate' type='text/html' href='http://git.musl-libc.org/cgit/musl/commit/?id=f552c792c7ce5a560f214e1104d93ee5b0833967'/>
<id>f552c792c7ce5a560f214e1104d93ee5b0833967</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>fix typo in inotify structure</title>
<updated>2011-02-20T21:21:39+00:00</updated>
<author>
<name>Rich Felker</name>
<email>dalias@aerifal.cx</email>
</author>
<published>2011-02-20T21:21:39+00:00</published>
<link rel='alternate' type='text/html' href='http://git.musl-libc.org/cgit/musl/commit/?id=b1b752372f10c904d398f64266b3188703727736'/>
<id>b1b752372f10c904d398f64266b3188703727736</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>make sys/param.h not depend on PATH_MAX and NAME_MAX</title>
<updated>2011-02-20T05:28:10+00:00</updated>
<author>
<name>Rich Felker</name>
<email>dalias@aerifal.cx</email>
</author>
<published>2011-02-20T05:28:10+00:00</published>
<link rel='alternate' type='text/html' href='http://git.musl-libc.org/cgit/musl/commit/?id=2b43ef8fc76eaf3912aa98316eae82797494276d'/>
<id>2b43ef8fc76eaf3912aa98316eae82797494276d</id>
<content type='text'>
this is a nonstandard header used only by backwards programs, but for
some reason it's extremely popular. the recent namespace cleanup fixes
broke it, because PATH_MAX and NAME_MAX will not be defined unless an
approriate feature test macro has been defined. moreover, it's too
late to just #define _GNU_SOURCE in param.h, since limits.h may have
already been included.

let's just hard-code standard values and be done with it.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
this is a nonstandard header used only by backwards programs, but for
some reason it's extremely popular. the recent namespace cleanup fixes
broke it, because PATH_MAX and NAME_MAX will not be defined unless an
approriate feature test macro has been defined. moreover, it's too
late to just #define _GNU_SOURCE in param.h, since limits.h may have
already been included.

let's just hard-code standard values and be done with it.
</pre>
</div>
</content>
</entry>
<entry>
<title>add syscall wrappers for inotify</title>
<updated>2011-02-19T07:52:29+00:00</updated>
<author>
<name>Rich Felker</name>
<email>dalias@aerifal.cx</email>
</author>
<published>2011-02-19T07:52:29+00:00</published>
<link rel='alternate' type='text/html' href='http://git.musl-libc.org/cgit/musl/commit/?id=095a5ae6f2466cdd457cdf3e9925b1fbd302c9be'/>
<id>095a5ae6f2466cdd457cdf3e9925b1fbd302c9be</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>prototype wait3 and wait4</title>
<updated>2011-02-19T07:26:11+00:00</updated>
<author>
<name>Rich Felker</name>
<email>dalias@aerifal.cx</email>
</author>
<published>2011-02-19T07:26:11+00:00</published>
<link rel='alternate' type='text/html' href='http://git.musl-libc.org/cgit/musl/commit/?id=52874c82a85a0f5c4b0eecd78ad8b3a349377cf3'/>
<id>52874c82a85a0f5c4b0eecd78ad8b3a349377cf3</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>add portable lchown (trivial to support and a few ancient things want it..)</title>
<updated>2011-02-18T04:13:46+00:00</updated>
<author>
<name>Rich Felker</name>
<email>dalias@aerifal.cx</email>
</author>
<published>2011-02-18T04:13:46+00:00</published>
<link rel='alternate' type='text/html' href='http://git.musl-libc.org/cgit/musl/commit/?id=d5ca067c7bb47081c169ff8b0213c73418f0525e'/>
<id>d5ca067c7bb47081c169ff8b0213c73418f0525e</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
