Age | Commit message (Collapse) | Author | Lines | |
---|---|---|---|---|
2014-05-24 | support kernels with no SYS_open syscall, only SYS_openat | Rich Felker | -1/+1 | |
open is handled specially because it is used from so many places, in so many variants (2 or 3 arguments, setting errno or not, and cancellable or not). trying to do it as a function would not only increase bloat, but would also risk subtle breakage. this is the first step towards supporting "new" archs where linux lacks "old" syscalls. | ||||
2011-04-17 | debloat: use __syscall instead of syscall where possible | Rich Felker | -1/+1 | |
don't waste time (and significant code size due to function call overhead!) setting errno when the result of a syscall does not matter or when it can't fail. | ||||
2011-04-14 | make tmpfile slightly more efficient (use unlink syscall instead of remove) | Rich Felker | -1/+1 | |
2011-03-29 | make tmpfile fail after exceeding max tries. | Rich Felker | -2/+6 | |
2011-03-20 | global cleanup to use the new syscall interface | Rich Felker | -1/+1 | |
2011-02-12 | initial check-in, version 0.5.0v0.5.0 | Rich Felker | -0/+23 | |