about summary refs log tree commit diff
path: root/src
Commit message (Expand)AuthorAgeFilesLines
...
* implement new dns backend, res_send and other legacy resolver functionsRich Felker2014-06-026-18/+263
* add ipsec and tunneling protocols to getprotoent-family functionsTimo Teräs2014-06-021-0/+4
* fix off-by-one in checking hostname length in new resolver backendRich Felker2014-06-021-2/+2
* improve getservbyname_r using new resolver backendRich Felker2014-06-012-22/+16
* improve gethostbyname2_r using new resolver backendRich Felker2014-06-011-35/+22
* refactor getaddrinfo and add support for most remaining featuresRich Felker2014-05-314-228/+360
* use cleaner code for handling float rounding in vfprintfSzabolcs Nagy2014-05-301-3/+1
* fix breakage from recent syscall commits due to missing errno macrosRich Felker2014-05-303-0/+3
* fix for broken kernel side RLIM_INFINITY on mipsSzabolcs Nagy2014-05-304-3/+38
* break down coarse-grained 64-bit-off_t syscall remappingsRich Felker2014-05-301-4/+16
* additional fixes for linux kernel apis with old syscalls removedRich Felker2014-05-302-0/+9
* fix sendfile syscall to use 64-bit off_tRich Felker2014-05-301-0/+5
* support linux kernel apis (new archs) with old syscalls removedRich Felker2014-05-2939-29/+267
* remove useless synchronization in exit and quick_exitRich Felker2014-05-292-11/+0
* fix missing declaration of strcpy in implementation of tmpnamRich Felker2014-05-271-0/+1
* overhaul tmpfile, tmpnam, and tempnam functionsRich Felker2014-05-273-55/+48
* fix sys_open macro for archs without the plain open syscallRich Felker2014-05-271-4/+4
* fix placement of multiple inclusion guard endif in internal syscall.hRich Felker2014-05-271-2/+2
* fix type of extended argument array to pselect6 syscallRich Felker2014-05-261-1/+2
* support kernels with no SYS_open syscall, only SYS_openatRich Felker2014-05-249-10/+26
* 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