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