summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Expand)AuthorFilesLines
2015-03-04remove useless check of bin match in mallocRich Felker1-1/+1
2015-03-04eliminate atomics in syslog setlogmask functionRich Felker1-4/+6
2015-03-04fix init race that could lead to deadlock in malloc init codeRich Felker1-39/+14
2015-03-03make all objects used with atomic operations volatileRich Felker25-57/+60
2015-03-02suppress masked cancellation in pthread_joinRich Felker1-1/+5
2015-03-02fix namespace issue in pthread_join affecting thrd_joinRich Felker1-1/+2
2015-03-02make aio_suspend a cancellation point and properly handle cancellationRich Felker1-3/+9
2015-03-02factor cancellation cleanup push/pop out of futex __timedwait functionRich Felker9-26/+24
2015-02-27fix failure of internal futex __timedwait to report ECANCELEDRich Felker1-1/+1
2015-02-26overhaul optimized x86_64 memset asmRich Felker1-26/+55
2015-02-26overhaul optimized i386 memset asmRich Felker1-32/+61
2015-02-25getloadavg: use sysinfo() instead of /proc/loadavgAlexander Monakov1-11/+7
2015-02-23fix possible isatty false positives and unwanted device state changesRich Felker3-9/+8
2015-02-23fix breakage in pthread_cond_wait due to typoRich Felker1-1/+1
2015-02-23support alternate backends for the passwd and group dbsJosiah Worcester4-2/+390
2015-02-23fix spurious errors in refactored passwd/group codeRich Felker2-2/+2
2015-02-23fix crashes in refactored passwd/group codeRich Felker2-4/+4
2015-02-22simplify cond var code now that cleanup handler is not neededRich Felker1-86/+63
2015-02-22fix pthread_cond_wait cancellation raceRich Felker1-5/+38
2015-02-21add new masked cancellation modeRich Felker2-10/+16
2015-02-20prepare cancellation syscall asm for possibility of __cancel returningRich Felker5-11/+32
2015-02-20map interruption of close by signal to success rather than EINPROGRESSRich Felker1-1/+1
2015-02-16make pthread_exit responsible for disabling cancellationRich Felker2-3/+2
2015-02-14fix type error (arch-dependent) in new aio codeRich Felker1-1/+1
2015-02-13refactor group file access codeJosiah Worcester6-51/+71
2015-02-13overhaul aio implementation for correctnessRich Felker9-193/+440
2015-02-11fix bad character checking in wordexpRich Felker1-0/+1
2015-02-10refactor passwd file access codeJosiah Worcester6-49/+65
2015-02-10x86_64/memset: avoid performing final store twiceDenys Vlasenko1-1/+1
2015-02-10x86_64/memset: simple optimizationsDenys Vlasenko1-14/+16
2015-02-10make protocol table zero byte separated and add ipv6 protocolsTimo Teräs1-22/+26
2015-02-09use the internal macro name FUTEX_PRIVATE in __waitSzabolcs Nagy1-1/+1
2015-02-09add IEEE binary128 long double support to floatscanSzabolcs Nagy1-1/+9
2015-02-09math: fix fmodl for IEEE binary128Szabolcs Nagy1-1/+1
2015-02-08simplify armhf fesetenvSzabolcs Nagy1-1/+0
2015-02-08fix fesetenv(FE_DFL_ENV) on mipsSzabolcs Nagy1-1/+3
2015-02-08math: fix __fpclassifyl(-0.0) for IEEE binary128Szabolcs Nagy1-3/+2
2015-02-08add parenthesis in fma.c to clarify intent and silence warningsSzabolcs Nagy1-1/+1
2015-02-07make getaddrinfo support SOCK_RAW and other socket typesRich Felker4-34/+42
2015-02-07remove cruft from x86_64 syscall.hSzabolcs Nagy1-0/+3
2015-02-05fix failure of fchmodat to report EOPNOTSUPP in the race pathRich Felker1-2/+4
2015-02-04fix fd leak race (missing O_CLOEXEC) in fchmodatRich Felker1-1/+1
2015-02-03make execvp continue PATH search on EACCES rather than issuing an errrorRich Felker1-1/+4
2015-02-03fix missing memory barrier in cancellation signal handlerRich Felker1-0/+1
2015-01-30make fsync, fdatasync, and msync cancellation pointsTrutz Behn3-3/+3
2015-01-30fix missing comma in sh setjmp asmTrutz Behn1-1/+1
2015-01-21fix erroneous return of partial username matches by getspnam[_r]Rich Felker1-1/+1
2015-01-21simplify part of getopt_longRich Felker1-13/+11
2015-01-21always set optarg in getopt_longRich Felker1-1/+1
2015-01-15overhaul __synccall and fix AS-safety and other issues in set*idRich Felker2-45/+138