summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Expand)AuthorFilesLines
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
2015-01-15add FUTEX_PRIVATE macro to internal futex.hRich Felker1-0/+2
2015-01-15suppress EINTR in sem_wait and sem_timedwaitRich Felker1-1/+1
2015-01-15for multithreaded set*id/setrlimit, handle case where callback does not runRich Felker2-4/+4
2015-01-13increase syslog message limit from 256 to 1024Rich Felker1-1/+1
2015-01-12remove rlimit hacks from multi-threaded set*id() codeRich Felker1-23/+15
2015-01-12simplify ctermidRich Felker1-14/+2
2015-01-11fix regression in getopt_long support for non-option argumentsRich Felker1-7/+6
2015-01-09check for connect failure in syslog log openingRich Felker1-2/+6
2014-12-21overhaul forkpty function using new login_ttyRich Felker1-26/+45
2014-12-20block pthread cancellation in openpty functionRich Felker1-9/+14
2014-12-20don't write openpty results until success is determinedRich Felker1-10/+12
2014-12-20add login_tty functionFelix Janda1-0/+14
2014-12-20set optopt in getopt_longRich Felker1-0/+1
2014-12-20add error message printing to getopt_long and make related improvementsRich Felker2-6/+32
2014-12-20support translation for getopt error messagesRich Felker1-0/+2
2014-12-19fix stderr locking and ferror semantics in getopt message printingRich Felker1-12/+16
2014-12-18use tkill instead of tgkill in implementing raiseRich Felker1-3/+2
2014-12-18don't suppress sign output for NANs in printfRich Felker1-1/+1
2014-12-18fix return value computation in one code path of wcsnrtombsRich Felker1-1/+1
2014-12-17provide CMPLX macros in implementation-internal libm.hRich Felker1-0/+12
2014-12-17implement FNM_CASEFOLD extension to fnmatch functionNagy Szabolcs1-11/+25
2014-12-17add basic dns record parsing functionsRich Felker1-0/+171
2014-12-17correctly handle write errors encountered by printf-family functionsRich Felker2-2/+12
2014-12-13simplify getopt_long argv permutation loop logicRich Felker1-3/+1
2014-12-13fix handling of "--" with getopt_long argv permutationRich Felker1-1/+0
2014-12-11accept null longopts pointer in getopt_longRich Felker1-1/+1
2014-12-10fix getopt handling of initial '+' in optstringRich Felker1-1/+1
2014-12-10support abbreviated options in getopt_longRich Felker1-7/+18