about summary refs log tree commit diff
path: root/src
Commit message (Expand)AuthorAgeFilesLines
* 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
* fix incorrect rounding in printf floating point corner casesRich Felker2014-03-091-2/+2
* fix buffer overflow in printf formatting of denormals with low bit setRich Felker2014-03-091-1/+2
* in fcntl, use unsigned long instead of long for variadic argument typeRich Felker2014-03-071-2/+2
* x32: fix sysinfo()rofl0r2014-03-061-0/+5
* fix strerror on mips: one error code is out of the 8-bit table rangeRich Felker2014-03-051-1/+7
* add nofpu subarchs to the sh arch, and properly detect compiler's fpu configRich Felker2014-02-278-0/+49
* rename superh port to "sh" for consistencyRich Felker2014-02-2713-0/+0
* fix readdir not to set ENOENT when directory is removed while readingRich Felker2014-02-251-2/+7
* add missing sub files for mipsel-sf to use softfloat codeRich Felker2014-02-243-0/+3
* mips: add mips-sf subarch support (soft-float)Szabolcs Nagy2014-02-245-0/+53
* superh portBobby Bingham2014-02-2313-0/+374
* mostly-cosmetic fixups to x32 port mergeRich Felker2014-02-233-11/+11
* x32 port (diff against vanilla x86_64)rofl0r2014-02-2326-114/+120
* import vanilla x86_64 code as x32rofl0r2014-02-2343-0/+675
* use syscall_arg_t type for syscall prototypes in pthread coderofl0r2014-02-222-3/+8
* internal/syscall.h: add syscall_arg_t macrorofl0r2014-02-221-6/+11