summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Expand)AuthorFilesLines
2014-05-29support linux kernel apis (new archs) with old syscalls removedRich Felker39-29/+267
2014-05-29remove useless synchronization in exit and quick_exitRich Felker2-11/+0
2014-05-27fix missing declaration of strcpy in implementation of tmpnamRich Felker1-0/+1
2014-05-27overhaul tmpfile, tmpnam, and tempnam functionsRich Felker3-55/+48
2014-05-27fix sys_open macro for archs without the plain open syscallRich Felker1-4/+4
2014-05-27fix placement of multiple inclusion guard endif in internal syscall.hRich Felker1-2/+2
2014-05-26fix type of extended argument array to pselect6 syscallRich Felker1-1/+2
2014-05-24support kernels with no SYS_open syscall, only SYS_openatRich Felker9-10/+26
2014-05-19fix unhandled cases in strptimeRich Felker1-5/+16
2014-05-19remove unsupported nonstandard sysconf macros and their table entriesRich Felker1-60/+0
2014-05-19rework sysconf table to treat zero entries as invalidRich Felker1-10/+13
2014-05-13add cp437 and cp850 to available iconv conversionsRich Felker2-177/+206
2014-05-08fix strftime %s not to zero pad with default width=2Szabolcs Nagy1-0/+1
2014-05-04remove useless __yield alias for sched_yieldRich Felker1-4/+1
2014-04-22perform minimal sanity checks on zoneinfo files loaded via TZ variableRich Felker1-0/+5
2014-04-22do not try to interpret implementation specific strings as tz definitionTimo Teräs1-0/+1
2014-04-21make __init_libc static for non-shared libcRich Felker1-0/+3
2014-04-21further micro-optimize startup code for sizeRich Felker2-23/+14
2014-04-21micro-optimize some startup code for sizeRich Felker2-7/+4
2014-04-21allow zoneinfo-path-relative filenames with no slashes in TZ variableRich Felker1-12/+8
2014-04-20expose public execvpe interfaceM Farkas-Dyck1-0/+3
2014-04-18fix false negatives with periodic needles in strstr, wcsstr, and memmemRich Felker3-3/+3
2014-04-17make socketcall types common as they are same for all architecturesTimo Teräs1-0/+23
2014-04-16add options when explicitly invoking dynamic loaderRich Felker1-2/+21
2014-04-16add working vdso clock_gettime support, including static linkingRich Felker2-5/+104
2014-04-15fix deadlock race in pthread_onceRich Felker1-2/+1
2014-04-15add _SC_PHYS_PAGES and _SC_AVPHYS_PAGES extentions to sysconfRich Felker1-2/+17
2014-04-15add namespace-protected name for sysinfo functionRich Felker2-6/+5
2014-04-15in sysconf, use getrlimit function rather than raw syscall for rlimitsRich Felker1-3/+3
2014-04-15avoid linear-time if/else special cases in sysconfRich Felker1-20/+35
2014-04-14fix fallback code for old kernels in clock_gettimeRich Felker1-1/+1
2014-04-12use hidden visibility rather than protected for syscall internalsRich Felker1-1/+1
2014-04-11math: fix aliasing violation in long double wrappersSzabolcs Nagy2-2/+10
2014-04-09fix search past the end of haystack in memmemTimo Teräs1-0/+1
2014-04-07fix printf rounding with %g for some corner case midpointsRich Felker1-1/+1
2014-04-07add getauxval functionRich Felker1-0/+12
2014-04-07fix failure of printf %g to strip trailing zeros in some casesRich Felker1-1/+1
2014-04-07fix carry into uninitialized slots during printf floating point roundingRich Felker1-1/+1
2014-04-07remove some cruft from libc/tls init codeRich Felker2-3/+0
2014-04-04remove cruft left behind when lazy thread pointer init was removedRich Felker1-8/+0
2014-04-02add __sigsetjmp ABI-compat alias for sigsetjmpRich Felker9-1/+28
2014-04-02remove struct elem entirely from hsearch.csin1-29/+22
2014-04-02implement hcreate_r, hdestroy_r and hsearch_rsin1-30/+73
2014-04-02avoid malloc failure for small requests when brk can't be extendedRich Felker1-1/+23
2014-03-25remove lazy ssp initializationTimo Teräs3-28/+5
2014-03-25if dynamic linker's relro mprotect call fails, include reason in messageRich Felker1-1/+1
2014-03-25cosmetic improvements in dynamic linker cleanupRich Felker1-5/+5
2014-03-25clean up internal dynamic linker functions enumerating phdrsTimo Teräs1-28/+23
2014-03-25implement PT_GNU_RELRO supportTimo Teräs1-15/+37
2014-03-24fix pointer type mismatch and misplacement of constRich Felker1-2/+2