about summary refs log tree commit diff
path: root/src
Commit message (Expand)AuthorAgeFilesLines
* work around linux's lack of flags argument to fchmodat syscallRich Felker2013-08-021-1/+29
* move RPATH search after LD_LIBRARY_PATH searchRich Felker2013-08-021-2/+2
* if map_library has allocated a buffer for phdrs, free it on success tooRich Felker2013-08-021-0/+1
* improve error handling in map_library and support long phdrsRich Felker2013-08-021-12/+21
* fix uninitialized dyn variable in map_libraryRich Felker2013-08-021-1/+1
* fix (deprecated) mktemp logic and update it to match other temp functionsRich Felker2013-08-021-4/+11
* remove (no longer useful) namespace-protected __mktemp symbolRich Felker2013-08-021-4/+1
* make mkdtemp and mkstemp family leave template unchanged on failRich Felker2013-08-022-13/+18
* optimized memset asm for i386 and x86_64Rich Felker2013-08-012-0/+88
* 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