summaryrefslogtreecommitdiff
AgeCommit message (Expand)AuthorFilesLines
2013-08-02if map_library has allocated a buffer for phdrs, free it on success tooRich Felker1-0/+1
2013-08-02improve error handling in map_library and support long phdrsRich Felker1-12/+21
2013-08-02fix uninitialized dyn variable in map_libraryRich Felker1-1/+1
2013-08-02fix (deprecated) mktemp logic and update it to match other temp functionsRich Felker1-4/+11
2013-08-02remove (no longer useful) namespace-protected __mktemp symbolRich Felker1-4/+1
2013-08-02make mkdtemp and mkstemp family leave template unchanged on failRich Felker2-13/+18
2013-08-01optimized memset asm for i386 and x86_64Rich Felker2-0/+88
2013-08-01work around gcc 4.8's generation of self-referential mem* functions at -O3Rich Felker2-0/+13
2013-07-31in pthread_getattr_np, use mremap rather than madvise to measure stackRich Felker1-1/+2
2013-07-31fix theoretical out-of-bound access in dynamic linkerRich Felker1-1/+1
2013-07-31prevent passing PT_INTERP name to dlopen from double-loading libcRich Felker1-6/+11
2013-07-31add some sanity checks in dynamic loader codeRich Felker1-0/+10
2013-07-31fix bug where read error was treated as success reading library headersRich Felker1-1/+1
2013-07-31don't call null pointer if DT_INIT/DT_FINI are nullRich Felker1-2/+2
2013-07-30add macros for new(ish) prctl commandsRich Felker1-0/+37
2013-07-30fix some prctl macros that were incorrectly copied into this fileRich Felker1-3/+3
2013-07-30use separate sigaction buffers for old and new dataTimo Teräs2-8/+8
2013-07-29release notes for 0.9.12v0.9.12Rich Felker1-0/+39
2013-07-28add missing erfcl wrapper for archs where long double is plain doubleRich Felker1-0/+4
2013-07-28fix semantically incorrect use of LC_GLOBAL_LOCALERich Felker7-7/+7
2013-07-27fix indention-with-spacesRich Felker1-1/+1
2013-07-27reorder strftime to eliminate the incorrect indention levelRich Felker1-5/+5
2013-07-27add wrapper headers, with warnings, for various incorrect names under sysRich Felker6-0/+11
2013-07-27a few more fixes for unistd/sysconf feature reportingRich Felker2-7/+8
2013-07-26report presence of ADV and MSG options in unistd.h and sysconfRich Felker2-2/+4
2013-07-26report that posix_spawn is supported in unistd.h and sysconfRich Felker2-1/+2
2013-07-26add ABI symbols for strtol family functionsRich Felker1-0/+8
2013-07-26make ldd report the libc/dynamic linker itselfRich Felker1-0/+22
2013-07-26fix computation of entry point and main app phdrs when invoking via ldsoRich Felker1-3/+1
2013-07-26fix powerpc build breakage from dynamic linker path search changesRich Felker1-1/+1
2013-07-26new mostly-C crt1 implementationRich Felker9-0/+96
2013-07-25fix undefined strcpy call in inet_ntopRich Felker1-1/+1
2013-07-25make inet_ntop format v4-mapped ipv6 addresses properlyRich Felker1-8/+14
2013-07-24do not include math modules in the default -O3 optimization setRich Felker1-1/+1
2013-07-24fix incorrect type for new si_call_addr in siginfo_tRich Felker1-3/+3
2013-07-25add protocol families PF_IB and PF_VSOCK to socket.hSzabolcs Nagy1-1/+5
2013-07-24update siginfo according to linux headersSzabolcs Nagy1-1/+13
2013-07-24rework langinfo code for ABI compat and for use by time codeRich Felker4-17/+17
2013-07-24update strxfrm/wcsxfrm for future LC_COLLATE support and ABI compatRich Felker4-14/+20
2013-07-24add ABI compat aliases for a number of locale_t functionsRich Felker8-0/+24
2013-07-24add PTRACE_PEEKSIGINFO to ptrace.hSzabolcs Nagy1-0/+11
2013-07-24add if_ether.h constants ETH_P_802_3_MIN and ETH_P_BATMANSzabolcs Nagy1-0/+3
2013-07-24add CLOCK_TAI (and CLOCK_SGI_CYCLE) clock ids to time.hSzabolcs Nagy1-0/+2
2013-07-24remove TCP_COOKIE_TRANSACTIONS from tcp.hSzabolcs Nagy1-1/+0
2013-07-24add SO_SELECT_ERR_QUEUE to socket.hSzabolcs Nagy1-0/+1
2013-07-24prepare strcoll/wcscoll for LC_COLLATE support and add ABI symbolsRich Felker4-15/+20
2013-07-24add _l versions of strtod family functions, purely as aliasesRich Felker1-0/+8
2013-07-24add __wcsftime_l symbolRich Felker1-3/+9
2013-07-24move strftime_l into strftime.c and add __-prefixed versionRich Felker2-8/+10
2013-07-24make getaddrinfo with AF_UNSPEC and null host return both IPv4 and v6Rich Felker1-14/+23