about summary refs log tree commit diff
path: root/src
Commit message (Expand)AuthorAgeFilesLines
* in pthread_getattr_np, use mremap rather than madvise to measure stackRich Felker2013-07-311-1/+2
* fix theoretical out-of-bound access in dynamic linkerRich Felker2013-07-311-1/+1
* prevent passing PT_INTERP name to dlopen from double-loading libcRich Felker2013-07-311-6/+11
* add some sanity checks in dynamic loader codeRich Felker2013-07-311-0/+10
* fix bug where read error was treated as success reading library headersRich Felker2013-07-311-1/+1
* don't call null pointer if DT_INIT/DT_FINI are nullRich Felker2013-07-311-2/+2
* use separate sigaction buffers for old and new dataTimo Teräs2013-07-302-8/+8
* add missing erfcl wrapper for archs where long double is plain doubleRich Felker2013-07-281-0/+4
* fix semantically incorrect use of LC_GLOBAL_LOCALERich Felker2013-07-287-7/+7
* fix indention-with-spacesRich Felker2013-07-271-1/+1
* reorder strftime to eliminate the incorrect indention levelRich Felker2013-07-271-5/+5
* a few more fixes for unistd/sysconf feature reportingRich Felker2013-07-271-7/+7
* report presence of ADV and MSG options in unistd.h and sysconfRich Felker2013-07-261-2/+2
* report that posix_spawn is supported in unistd.h and sysconfRich Felker2013-07-261-1/+1
* add ABI symbols for strtol family functionsRich Felker2013-07-261-0/+8
* make ldd report the libc/dynamic linker itselfRich Felker2013-07-261-0/+22
* fix computation of entry point and main app phdrs when invoking via ldsoRich Felker2013-07-261-3/+1
* fix undefined strcpy call in inet_ntopRich Felker2013-07-251-1/+1
* make inet_ntop format v4-mapped ipv6 addresses properlyRich Felker2013-07-251-8/+14
* rework langinfo code for ABI compat and for use by time codeRich Felker2013-07-244-17/+17
* update strxfrm/wcsxfrm for future LC_COLLATE support and ABI compatRich Felker2013-07-244-14/+20
* add ABI compat aliases for a number of locale_t functionsRich Felker2013-07-248-0/+24
* prepare strcoll/wcscoll for LC_COLLATE support and add ABI symbolsRich Felker2013-07-244-15/+20
* add _l versions of strtod family functions, purely as aliasesRich Felker2013-07-241-0/+8
* add __wcsftime_l symbolRich Felker2013-07-241-3/+9
* move strftime_l into strftime.c and add __-prefixed versionRich Felker2013-07-242-8/+10
* make getaddrinfo with AF_UNSPEC and null host return both IPv4 and v6Rich Felker2013-07-241-14/+23
* support STB_GNU_UNIQUE symbol bindings in dynamic linkerRich Felker2013-07-241-1/+1
* move the dynamic linker's jmp_buf from static to automatic storageRich Felker2013-07-241-5/+7
* change jmp_buf to share an underlying type and struct tag with sigjmp_bufRich Felker2013-07-242-2/+2
* remove redundant check in memalignRich Felker2013-07-231-1/+1
* fix heap corruption bug in memalignRich Felker2013-07-231-1/+3
* disable legacy init/fini processing on ARMRich Felker2013-07-221-0/+4
* make pthread attribute types structs, even when they just have one fieldRich Felker2013-07-2211-22/+22
* refactor headers, especially alltypes.h, and improve C++ ABI compatRich Felker2013-07-223-3/+3
* remove __libc_csu_* cruftRich Felker2013-07-212-10/+0
* add support for init/fini array in main program, and greatly simplifyRich Felker2013-07-214-26/+33
* fix order of fini_array execution for shared libsRich Felker2013-07-211-2/+2
* add support for init_array/fini_array ctors/dtors to dynamic linkerRich Felker2013-07-201-2/+13
* fix shm_open wrongly being cancellableRich Felker2013-07-201-1/+6
* fix uninitialized/stale use of alloc (%m modifier) flag in scanfRich Felker2013-07-202-0/+4
* harden realloc/free to detect simple overflowsRich Felker2013-07-191-0/+6
* improve [f]stat[v]fs functions, and possibly work around old kernelsRich Felker2013-07-191-2/+5
* change uid_t, gid_t, and id_t to unsigned typesRich Felker2013-07-192-6/+20
* make the dynamic linker find its path file relative to its own locationRich Felker2013-07-181-1/+20
* fix off-by-one error in checks for implementation-internal signal numbersRich Felker2013-07-183-3/+3
* make posix_spawn (and functions that use it) use CLONE_VFORK flagRich Felker2013-07-171-1/+2
* fix missing argument in variadic syscall macrosRich Felker2013-07-171-1/+1
* fix error code on time conversion overflowsRich Felker2013-07-174-4/+4
* fix fd leak in file mapping code used in new zoneinfo supportRich Felker2013-07-171-1/+1