summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Expand)AuthorLines
2014-05-24support kernels with no SYS_open syscall, only SYS_openatRich Felker-10/+26
2014-05-19fix unhandled cases in strptimeRich Felker-5/+16
2014-05-19remove unsupported nonstandard sysconf macros and their table entriesRich Felker-60/+0
2014-05-19rework sysconf table to treat zero entries as invalidRich Felker-10/+13
2014-05-13add cp437 and cp850 to available iconv conversionsRich Felker-177/+206
2014-05-08fix strftime %s not to zero pad with default width=2Szabolcs Nagy-0/+1
2014-05-04remove useless __yield alias for sched_yieldRich Felker-4/+1
2014-04-22perform minimal sanity checks on zoneinfo files loaded via TZ variableRich Felker-0/+5
2014-04-22do not try to interpret implementation specific strings as tz definitionTimo Teräs-0/+1
2014-04-21make __init_libc static for non-shared libcRich Felker-0/+3
2014-04-21further micro-optimize startup code for sizeRich Felker-23/+14
2014-04-21micro-optimize some startup code for sizeRich Felker-7/+4
2014-04-21allow zoneinfo-path-relative filenames with no slashes in TZ variableRich Felker-12/+8
2014-04-20expose public execvpe interfaceM Farkas-Dyck-0/+3
2014-04-18fix false negatives with periodic needles in strstr, wcsstr, and memmemRich Felker-3/+3
2014-04-17make socketcall types common as they are same for all architecturesTimo Teräs-0/+23
2014-04-16add options when explicitly invoking dynamic loaderRich Felker-2/+21
2014-04-16add working vdso clock_gettime support, including static linkingRich Felker-5/+104
2014-04-15fix deadlock race in pthread_onceRich Felker-2/+1
2014-04-15add _SC_PHYS_PAGES and _SC_AVPHYS_PAGES extentions to sysconfRich Felker-2/+17
2014-04-15add namespace-protected name for sysinfo functionRich Felker-6/+5
2014-04-15in sysconf, use getrlimit function rather than raw syscall for rlimitsRich Felker-3/+3
2014-04-15avoid linear-time if/else special cases in sysconfRich Felker-20/+35
2014-04-14fix fallback code for old kernels in clock_gettimeRich Felker-1/+1
2014-04-12use hidden visibility rather than protected for syscall internalsRich Felker-1/+1
2014-04-11math: fix aliasing violation in long double wrappersSzabolcs Nagy-2/+10
2014-04-09fix search past the end of haystack in memmemTimo Teräs-0/+1
2014-04-07fix printf rounding with %g for some corner case midpointsRich Felker-1/+1
2014-04-07add getauxval functionRich Felker-0/+12
2014-04-07fix failure of printf %g to strip trailing zeros in some casesRich Felker-1/+1
2014-04-07fix carry into uninitialized slots during printf floating point roundingRich Felker-1/+1
2014-04-07remove some cruft from libc/tls init codeRich Felker-3/+0
2014-04-04remove cruft left behind when lazy thread pointer init was removedRich Felker-8/+0
2014-04-02add __sigsetjmp ABI-compat alias for sigsetjmpRich Felker-1/+28
2014-04-02remove struct elem entirely from hsearch.csin-29/+22
2014-04-02implement hcreate_r, hdestroy_r and hsearch_rsin-30/+73
2014-04-02avoid malloc failure for small requests when brk can't be extendedRich Felker-1/+23
2014-03-25remove lazy ssp initializationTimo Teräs-28/+5
2014-03-25if dynamic linker's relro mprotect call fails, include reason in messageRich Felker-1/+1
2014-03-25cosmetic improvements in dynamic linker cleanupRich Felker-5/+5
2014-03-25clean up internal dynamic linker functions enumerating phdrsTimo Teräs-28/+23
2014-03-25implement PT_GNU_RELRO supportTimo Teräs-15/+37
2014-03-24fix pointer type mismatch and misplacement of constRich Felker-2/+2
2014-03-24fix confstr return valueTimo Teräs-1/+1
2014-03-24always initialize thread pointer at program startRich Felker-98/+118
2014-03-23reduce static linking overhead from TLS support by inlining mmap syscallRich Felker-1/+9
2014-03-23include header that declares __syscall_ret where it's definedRich Felker-0/+1
2014-03-18fix mips sigsetjmp asm to match fixed jmp_buf sizeRich Felker-1/+1
2014-03-18use syscall_arg_t for arguments in public syscall() functionRich Felker-7/+7
2014-03-17fix negated error codes from ptsname_rRich Felker-1/+1