Age | Commit message (Expand) | Author | Lines |
2018-09-15 | improve error handling of ttyname_r and isatty | Benjamin Peterson | -2/+6 |
2018-09-12 | remove spurious inclusion of libc.h for LFS64 ABI aliases | Rich Felker | -14/+7 |
2018-09-12 | reduce spurious inclusion of libc.h | Rich Felker | -9/+0 |
2018-09-12 | move and deduplicate declarations of __procfdname to make it checkable | Rich Felker | -6/+1 |
2018-05-01 | avoid excessive stack usage in getcwd | Rich Felker | -2/+2 |
2018-04-19 | fix out of bounds write for zero length buffer in gethostname | Marc André Tanner | -1/+1 |
2018-04-17 | fix return value of nice function | Rich Felker | -5/+9 |
2018-02-07 | make getcwd fail if it cannot obtain an absolute path | Dmitry V. Levin | -1/+7 |
2018-02-05 | revert regression in faccessat AT_EACCESS robustness | Rich Felker | -21/+14 |
2017-05-27 | fix fchown fallback on arches without chown(2) | Samuel Holland | -1/+1 |
2017-04-21 | make ttyname[_r] return ENODEV rather than ENOENT | Rich Felker | -1/+1 |
2016-08-30 | verify that ttyname refers to the same file as the fd | Szabolcs Nagy | -4/+11 |
2016-08-11 | fix pread/pwrite syscall calling convention on sh | Rich Felker | -2/+2 |
2016-04-18 | add mips n32 port (ILP32 ABI for mips64) | Rich Felker | -0/+19 |
2016-03-06 | add mips64 port | Rich Felker | -0/+19 |
2015-06-16 | switch to using trap number 31 for syscalls on sh | Rich Felker | -1/+1 |
2015-02-23 | fix possible isatty false positives and unwanted device state changes | Rich Felker | -3/+4 |
2015-02-20 | map interruption of close by signal to success rather than EINPROGRESS | Rich Felker | -1/+1 |
2015-02-13 | overhaul aio implementation for correctness | Rich Felker | -0/+8 |
2015-01-30 | make fsync, fdatasync, and msync cancellation points | Trutz Behn | -2/+2 |
2015-01-15 | for multithreaded set*id/setrlimit, handle case where callback does not run | Rich Felker | -1/+1 |
2015-01-12 | remove rlimit hacks from multi-threaded set*id() code | Rich Felker | -23/+15 |
2015-01-12 | simplify ctermid | Rich Felker | -14/+2 |
2014-05-29 | support linux kernel apis (new archs) with old syscalls removed | Rich Felker | -1/+69 |
2014-02-27 | rename superh port to "sh" for consistency | Rich Felker | -0/+0 |
2014-02-23 | superh port | Bobby Bingham | -0/+27 |
2013-12-19 | fix failure of fchmod, fstat, fchdir, and fchown to produce EBADF | Rich Felker | -2/+6 |
2013-12-12 | include cleanups: remove unused headers and add feature test macros | Szabolcs Nagy | -6/+1 |
2013-12-06 | add posix_close, accepted for inclusion in the next issue of POSIX | Rich Felker | -0/+6 |
2013-11-01 | simplify faccessat AT_EACCESS path and eliminate resource dependence | Rich Felker | -14/+21 |
2013-11-01 | fix faccessat AT_EACCESS path not to leave zombie processes | Rich Felker | -2/+6 |
2013-10-18 | in faccessat slow path, add close-on-exec to pipe fds | Rich Felker | -1/+1 |
2013-10-12 | fix uid/gid-setting error in faccessat with AT_EACCESS flag | Rich Felker | -2/+2 |
2013-10-08 | fix errno value for getcwd when size argument is zero | Rich Felker | -1/+7 |
2013-08-31 | fix missing return value warning in faccessat, minor cleanup | Rich Felker | -1/+1 |
2013-08-09 | block all signals, even implementation-internal ones, in faccessat child | Rich Felker | -1/+1 |
2013-08-03 | fix faccessat to support AT_EACCESS flag | Rich Felker | -1/+46 |
2013-08-02 | make fchdir, fchmod, fchown, and fstat support O_PATH file descriptors | Rich Felker | -2/+18 |
2013-08-02 | debloat code that depends on /proc/self/fd/%d with shared function | Rich Felker | -1/+3 |
2013-07-09 | fix bogus lazy allocation in ctermid and missing malloc failure check | Rich Felker | -10/+7 |
2013-07-09 | fix fd leak on races and cancellation in ctermid | Rich Felker | -2/+3 |
2013-03-25 | in pipe2, use pipe() rather than __syscall(SYS_pipe, ...) for fallback | Rich Felker | -3/+3 |
2013-02-03 | streamline old-kernel fallback path of pipe2 to use syscalls directly | Rich Felker | -4/+4 |
2012-12-11 | fix double errno-decoding in the old-kernel fallback path of pipe2 | Rich Felker | -1/+1 |
2012-10-24 | greatly improve freopen behavior | Rich Felker | -2/+13 |
2012-10-18 | overhaul system() and popen() to use vfork; fix various related bugs | Rich Felker | -3/+17 |
2012-09-29 | move accept4, dup3, and pipe2 to non-linux-specific locations | Rich Felker | -0/+18 |
2012-09-29 | fix some indention-with-spaces that crept in | Rich Felker | -1/+1 |
2012-09-24 | fix handling of EINTR during close() | Rich Felker | -1/+4 |
2012-09-09 | fix up lfs64 junk for preadv/pwritev | Rich Felker | -2/+2 |