Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2012-09-08 | add IPPROTO_MAX to in.h | Rich Felker | 1 | -0/+1 | |
2012-09-08 | fix redundant _Noreturn def in err.h | Rich Felker | 1 | -7/+1 | |
not sure why this was missed in the earlier commit. | |||||
2012-09-08 | remove all remaining redundant __restrict/__inline/_Noreturn defs | Rich Felker | 14 | -76/+14 | |
2012-09-08 | sysmacros major/minor: result should have type unsigned int, not dev_t | Rich Felker | 1 | -2/+2 | |
2012-09-08 | add linux tee syscall | Rich Felker | 2 | -0/+9 | |
2012-09-08 | add linux sync_file_range syscall | Rich Felker | 2 | -0/+20 | |
2012-09-08 | move fallocate syscall wrapper to linux-specific syscalls dir | Rich Felker | 1 | -0/+0 | |
2012-09-08 | add linux readahead syscall | Rich Felker | 2 | -0/+9 | |
2012-09-08 | add fallocate (nonstandardized) function | Rich Felker | 2 | -0/+12 | |
this is equivalent to posix_fallocate except that it has an extra mode/flags argument to control its behavior, and stores the error in errno rather than returning an error code. | |||||
2012-09-08 | fix broken fallocate syscall in posix_fallocate | Rich Felker | 1 | -1/+1 | |
the syscall takes an extra flag argument which should be zero to meet the POSIX requirements. | |||||
2012-09-08 | add timerfd interfaces (untested) | Rich Felker | 2 | -0/+35 | |