Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | remove some old cruft from sys/types.h | Rich Felker | 2011-03-14 | 1 | -1/+0 |
| | |||||
* | fcntl.h should make availabel the mode constants from sys/stat.h | Rich Felker | 2011-03-08 | 1 | -8/+2 |
| | | | | also remove some legacy nonsense that crept in. | ||||
* | namespace cleanup in sys/mman.h | Rich Felker | 2011-03-03 | 1 | -1/+3 |
| | |||||
* | implement futimens and utimensat | Rich Felker | 2011-02-27 | 1 | -0/+3 |
| | |||||
* | cleanup namespace in sys/time.h | Rich Felker | 2011-02-27 | 1 | -4/+5 |
| | |||||
* | include sys/sysmacros.h from sys/types.h when _GNU_SOURCE is defined | Rich Felker | 2011-02-20 | 1 | -0/+1 |
| | |||||
* | fix typo in inotify structure | Rich Felker | 2011-02-20 | 1 | -1/+1 |
| | |||||
* | make sys/param.h not depend on PATH_MAX and NAME_MAX | Rich Felker | 2011-02-20 | 1 | -2/+2 |
| | | | | | | | | | | | 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. | ||||
* | add syscall wrappers for inotify | Rich Felker | 2011-02-19 | 1 | -0/+55 |
| | |||||
* | prototype wait3 and wait4 | Rich Felker | 2011-02-19 | 2 | -3/+6 |
| | |||||
* | add portable lchown (trivial to support and a few ancient things want it..) | Rich Felker | 2011-02-17 | 1 | -0/+3 |
| | |||||
* | reorganize pthread data structures and move the definitions to alltypes.h | Rich Felker | 2011-02-17 | 1 | -0/+14 |
| | | | | | | | | 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. | ||||
* | extensive header cleanup for standards conformance & correctness | Rich Felker | 2011-02-14 | 4 | -3/+8 |
| | | | | | thanks to Peter Mazinger (psm) for pointing many of these issues out and submitting a patch on which this commit is loosely based | ||||
* | initial check-in, version 0.5.0 v0.5.0 | Rich Felker | 2011-02-12 | 42 | -0/+1209 |