Age | Commit message (Expand) | Author | Files | Lines |
2015-02-23 | fix crashes in refactored passwd/group code | Rich Felker | 2 | -4/+4 |
2015-02-22 | simplify cond var code now that cleanup handler is not needed | Rich Felker | 1 | -86/+63 |
2015-02-22 | fix pthread_cond_wait cancellation race | Rich Felker | 1 | -5/+38 |
2015-02-21 | add new masked cancellation mode | Rich Felker | 2 | -10/+16 |
2015-02-20 | prepare cancellation syscall asm for possibility of __cancel returning | Rich Felker | 5 | -11/+32 |
2015-02-20 | map interruption of close by signal to success rather than EINPROGRESS | Rich Felker | 1 | -1/+1 |
2015-02-16 | make pthread_exit responsible for disabling cancellation | Rich Felker | 2 | -3/+2 |
2015-02-14 | fix type error (arch-dependent) in new aio code | Rich Felker | 1 | -1/+1 |
2015-02-13 | refactor group file access code | Josiah Worcester | 6 | -51/+71 |
2015-02-13 | overhaul aio implementation for correctness | Rich Felker | 9 | -193/+440 |
2015-02-11 | fix bad character checking in wordexp | Rich Felker | 1 | -0/+1 |
2015-02-10 | refactor passwd file access code | Josiah Worcester | 6 | -49/+65 |
2015-02-10 | x86_64/memset: avoid performing final store twice | Denys Vlasenko | 1 | -1/+1 |
2015-02-10 | x86_64/memset: simple optimizations | Denys Vlasenko | 1 | -14/+16 |
2015-02-10 | make protocol table zero byte separated and add ipv6 protocols | Timo Teräs | 1 | -22/+26 |
2015-02-09 | use the internal macro name FUTEX_PRIVATE in __wait | Szabolcs Nagy | 1 | -1/+1 |
2015-02-09 | add IEEE binary128 long double support to floatscan | Szabolcs Nagy | 1 | -1/+9 |
2015-02-09 | math: fix fmodl for IEEE binary128 | Szabolcs Nagy | 1 | -1/+1 |
2015-02-08 | simplify armhf fesetenv | Szabolcs Nagy | 1 | -1/+0 |
2015-02-08 | fix fesetenv(FE_DFL_ENV) on mips | Szabolcs Nagy | 1 | -1/+3 |
2015-02-08 | math: fix __fpclassifyl(-0.0) for IEEE binary128 | Szabolcs Nagy | 1 | -3/+2 |
2015-02-08 | add parenthesis in fma.c to clarify intent and silence warnings | Szabolcs Nagy | 1 | -1/+1 |
2015-02-07 | make getaddrinfo support SOCK_RAW and other socket types | Rich Felker | 4 | -34/+42 |
2015-02-07 | remove cruft from x86_64 syscall.h | Szabolcs Nagy | 1 | -0/+3 |
2015-02-05 | fix failure of fchmodat to report EOPNOTSUPP in the race path | Rich Felker | 1 | -2/+4 |
2015-02-04 | fix fd leak race (missing O_CLOEXEC) in fchmodat | Rich Felker | 1 | -1/+1 |
2015-02-03 | make execvp continue PATH search on EACCES rather than issuing an errror | Rich Felker | 1 | -1/+4 |
2015-02-03 | fix missing memory barrier in cancellation signal handler | Rich Felker | 1 | -0/+1 |
2015-01-30 | make fsync, fdatasync, and msync cancellation points | Trutz Behn | 3 | -3/+3 |
2015-01-30 | fix missing comma in sh setjmp asm | Trutz Behn | 1 | -1/+1 |
2015-01-21 | fix erroneous return of partial username matches by getspnam[_r] | Rich Felker | 1 | -1/+1 |
2015-01-21 | simplify part of getopt_long | Rich Felker | 1 | -13/+11 |
2015-01-21 | always set optarg in getopt_long | Rich Felker | 1 | -1/+1 |
2015-01-15 | overhaul __synccall and fix AS-safety and other issues in set*id | Rich Felker | 2 | -45/+138 |
2015-01-15 | add FUTEX_PRIVATE macro to internal futex.h | Rich Felker | 1 | -0/+2 |
2015-01-15 | suppress EINTR in sem_wait and sem_timedwait | Rich Felker | 1 | -1/+1 |
2015-01-15 | for multithreaded set*id/setrlimit, handle case where callback does not run | Rich Felker | 2 | -4/+4 |
2015-01-13 | increase syslog message limit from 256 to 1024 | Rich Felker | 1 | -1/+1 |
2015-01-12 | remove rlimit hacks from multi-threaded set*id() code | Rich Felker | 1 | -23/+15 |
2015-01-12 | simplify ctermid | Rich Felker | 1 | -14/+2 |
2015-01-11 | fix regression in getopt_long support for non-option arguments | Rich Felker | 1 | -7/+6 |
2015-01-09 | check for connect failure in syslog log opening | Rich Felker | 1 | -2/+6 |
2014-12-21 | overhaul forkpty function using new login_tty | Rich Felker | 1 | -26/+45 |
2014-12-20 | block pthread cancellation in openpty function | Rich Felker | 1 | -9/+14 |
2014-12-20 | don't write openpty results until success is determined | Rich Felker | 1 | -10/+12 |
2014-12-20 | add login_tty function | Felix Janda | 1 | -0/+14 |
2014-12-20 | set optopt in getopt_long | Rich Felker | 1 | -0/+1 |
2014-12-20 | add error message printing to getopt_long and make related improvements | Rich Felker | 2 | -6/+32 |
2014-12-20 | support translation for getopt error messages | Rich Felker | 1 | -0/+2 |
2014-12-19 | fix stderr locking and ferror semantics in getopt message printing | Rich Felker | 1 | -12/+16 |