aboutsummaryrefslogtreecommitdiff
path: root/include/sys (follow)
Commit message (Expand)AuthorAgeFilesLines
* make sys/param.h not depend on PATH_MAX and NAME_MAX•••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. Rich Felker2011-02-201-2/+2
* add syscall wrappers for inotifyRich Felker2011-02-191-0/+55
* prototype wait3 and wait4Rich Felker2011-02-192-3/+6
* add portable lchown (trivial to support and a few ancient things want it..)Rich Felker2011-02-171-0/+3
* reorganize pthread data structures and move the definitions to alltypes.h•••this allows sys/types.h to provide the pthread types, as required by POSIX. this design also facilitates forcing ABI-compatible sizes in the arch-specific alltypes.h, while eliminating the need for developers changing the internals of the pthread types to poke around with arch-specific headers they may not be able to test. Rich Felker2011-02-171-0/+14
* extensive header cleanup for standards conformance & correctness•••thanks to Peter Mazinger (psm) for pointing many of these issues out and submitting a patch on which this commit is loosely based Rich Felker2011-02-144-3/+8
* initial check-in, version 0.5.0Rich Felker2011-02-1242-0/+1209