summaryrefslogtreecommitdiff
AgeCommit message (Expand)AuthorFilesLines
2014-12-10support options after non-option arguments in getopt_long (argv permutation)Rich Felker1-0/+39
2014-12-09don't shadow functions with macros in C++Bobby Bingham3-0/+6
2014-12-05use direct syscall rather than write function in posix_spawn childRich Felker1-1/+1
2014-12-05don't fail posix_spawn on failed closeRich Felker1-2/+1
2014-12-04fix getopt handling of ':' modifier for multibyte option charactersRich Felker1-4/+9
2014-12-03add arm private syscall numbersTimo Teräs1-0/+5
2014-12-02fix return value of pthread_getaffinity_np and pthread_setaffinity_npRich Felker1-8/+11
2014-12-02fix uninitialized output from sched_getaffinityRich Felker1-1/+5
2014-12-02add support for non-option arguments extension to getoptGianluca Anzolin2-4/+20
2014-11-23adapt dynamic linker for new binutils versions that omit DT_RPATHRich Felker1-0/+2
2014-11-23fix tabs/spaces in memcpy.sRich Felker1-279/+279
2014-11-23fix build regression in arm asm for setjmp/longjmp with old assemblersRich Felker2-2/+2
2014-11-23fix build regression in arm asm for memcpyRich Felker1-30/+30
2014-11-23arm assembly changes for clang compatibilityJoakim Sindholt3-32/+32
2014-11-22unify non-inline version of syscall code across archsRich Felker4-104/+16
2014-11-22inline 5- and 6-argument syscalls on armRich Felker1-2/+15
2014-11-22remove old clang workarounds from arm syscall implementationRich Felker1-31/+0
2014-11-22fix __aeabi_read_tp oversight in arm atomics/tls overhaulRich Felker3-10/+5
2014-11-19overhaul ARM atomics/tls for performance and compatibilityRich Felker6-56/+331
2014-11-19save auxv pointer into libc struct early in dynamic linker startupRich Felker1-0/+1
2014-11-15getopt: fix optional argument processingFelix Fietkau1-2/+2
2014-11-15implement a private state for the uchar.h functionsJens Gustedt3-0/+6
2014-11-15fix behavior of printf with alt-form octal, zero precision, zero valueRich Felker1-1/+1
2014-11-05math: use fnstsw consistently instead of fstsw in x87 asmSzabolcs Nagy11-11/+11
2014-11-05math: fix x86_64 and x32 asm not to use sahf instructionSzabolcs Nagy6-28/+14
2014-11-05fix 64-bit syscall argument passing on or1kRich Felker1-1/+1
2014-10-31fix uninitialized mode variable in openat functionRich Felker1-1/+1
2014-10-31math: use the rounding idiom consistentlySzabolcs Nagy13-58/+89
2014-10-31fix rint.c and rintf.c when FLT_EVAL_METHOD!=0Szabolcs Nagy2-4/+22
2014-10-30fix invalid access by openat to possibly-missing variadic mode argumentRich Felker1-4/+8
2014-10-30fix failure of open to read variadic mode argument for O_TMPFILERich Felker1-1/+1
2014-10-20manually "shrink wrap" fast path in pthread_onceRich Felker1-8/+12
2014-10-14release 1.1.5v1.1.5Rich Felker2-1/+39
2014-10-14suppress macro definitions of ctype functions under C++Rich Felker3-0/+7
2014-10-13implement uchar.h (C11 UTF-16/32 conversion) interfacesRich Felker7-5/+109
2014-10-13eliminate global waiters count in pthread_onceRich Felker1-9/+13
2014-10-10fix missing barrier in pthread_once/call_once shortcut pathRich Felker1-2/+6
2014-10-10add explicit barrier operation to internal atomic.h APIRich Felker9-6/+33
2014-10-09fix handling of negative offsets in timezone spec stringsRich Felker1-10/+7
2014-10-08add new linux file sealing api to fcntl.hSzabolcs Nagy1-0/+7
2014-10-08add new IPV6_AUTOFLOWLABEL socket option in netinet/in.hSzabolcs Nagy1-0/+1
2014-10-08add new syscall numbers for seccomp, getrandom, memfd_createSzabolcs Nagy8-0/+50
2014-10-08always provide __fpclassifyl and __signbitl definitionsRich Felker2-1/+9
2014-10-06ignore access mode bits of flags in mkostemps and functions that use itRich Felker1-0/+1
2014-10-04fix handling of odd lengths in swab functionRich Felker1-1/+1
2014-09-22fix incorrect sequence generation in *rand48 prng functionsRich Felker1-2/+2
2014-09-19fix linked list corruption in flockfile listsRich Felker1-0/+1
2014-09-18math: fix exp10 not to raise invalid exception on NaNSzabolcs Nagy3-4/+13
2014-09-16fix overflow corner case in strtoul-family functionsRich Felker1-0/+1
2014-09-13rewrite the regex pattern parser in regcompSzabolcs Nagy1-1081/+634