summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Expand)AuthorLines
2013-08-16support floating point environment (fenv) on armhf (hard float) subarchsRich Felker-0/+62
2013-08-16fix build of x86_64 expl assemblyRich Felker-1/+1
2013-08-15math: fix pow(x,-1) to raise underflow properlySzabolcs Nagy-2/+14
2013-08-15math: fix i386 atan2.s to raise underflow for subnormal resultsSzabolcs Nagy-2/+24
2013-08-15math: clean up atan2.cSzabolcs Nagy-103/+73
2013-08-15math: fix x86 asin, atan, exp, log1p to raise underflowSzabolcs Nagy-3/+98
2013-08-15math: fix x86 expl.s to raise underflow and clean up special case handlingSzabolcs Nagy-45/+31
2013-08-15math: fix asin, atan, log1p, tanh to raise underflow on subnormalSzabolcs Nagy-26/+39
2013-08-15math: fix tgamma to raise underflow for large negative valuesSzabolcs Nagy-0/+1
2013-08-15math: fix pow(0,-inf) to raise divbyzero flagSzabolcs Nagy-2/+2
2013-08-15math: minor scalbn*.c simplificationSzabolcs Nagy-18/+10
2013-08-14fix length computation in dn_expandRich Felker-3/+5
2013-08-14de-duplicate dn_expand, fix return value and signature, clean upRich Felker-48/+23
2013-08-14add arm-optimized memcpy implementation from bionic libcRich Felker-0/+383
2013-08-10fix _NSIG and SIGRTMAX on mipsRich Felker-1/+3
2013-08-10add pthread_setaffinity_np and pthread_getaffinity_np functionsRich Felker-18/+26
2013-08-10add cpu affinity interfacesRich Felker-0/+29
2013-08-09change sigset_t functions to restrict to _NSIGRich Felker-5/+5
2013-08-09optimize posix_spawn to avoid spurious sigaction syscallsRich Felker-12/+37
2013-08-09fix missing errno from exec failure in posix_spawnRich Felker-0/+1
2013-08-09block all signals, even implementation-internal ones, in faccessat childRich Felker-1/+1
2013-08-08block signals during forkRich Felker-0/+3
2013-08-08work around libraries with versioned symbols in dynamic linkerRich Felker-11/+14
2013-08-07add Big5 charset support to iconvRich Felker-0/+1066
2013-08-07make fcvt decimal point location for zero make more senseRich Felker-1/+1
2013-08-07fix ecvt/fcvt decimal point position outputRich Felker-1/+1
2013-08-05iconv support for legacy Korean encodingsRich Felker-0/+678
2013-08-03have new timer threads unblock their own SIGTIMERRich Felker-2/+2
2013-08-03add system for resetting TLS to initial valuesRich Felker-14/+56
2013-08-03fix multiple bugs in SIGEV_THREAD timersRich Felker-22/+36
2013-08-03fix faccessat to support AT_EACCESS flagRich Felker-1/+46
2013-08-03collapse euidaccess to a call to faccessatRich Felker-9/+1
2013-08-03add legacy euidaccess function and eaccess alias for itRich Felker-0/+18
2013-08-02make tdestroy allow null function pointer if no destructor is neededRich Felker-1/+1
2013-08-02fix aliasing violations in tsearch functionsRich Felker-2/+10
2013-08-02protect against long double type mismatches (mainly powerpc for now)Rich Felker-0/+7
2013-08-02add legacy function vallocRich Felker-0/+8
2013-08-02add wcsftime_t aliasRich Felker-0/+3
2013-08-02make fchdir, fchmod, fchown, and fstat support O_PATH file descriptorsRich Felker-5/+37
2013-08-02debloat code that depends on /proc/self/fd/%d with shared functionRich Felker-6/+26
2013-08-02work around linux's lack of flags argument to fchmodat syscallRich Felker-1/+29
2013-08-02move RPATH search after LD_LIBRARY_PATH searchRich Felker-2/+2
2013-08-02if map_library has allocated a buffer for phdrs, free it on success tooRich Felker-0/+1
2013-08-02improve error handling in map_library and support long phdrsRich Felker-12/+21
2013-08-02fix uninitialized dyn variable in map_libraryRich Felker-1/+1
2013-08-02fix (deprecated) mktemp logic and update it to match other temp functionsRich Felker-4/+11
2013-08-02remove (no longer useful) namespace-protected __mktemp symbolRich Felker-4/+1
2013-08-02make mkdtemp and mkstemp family leave template unchanged on failRich Felker-13/+18
2013-08-01optimized memset asm for i386 and x86_64Rich Felker-0/+88
2013-07-31in pthread_getattr_np, use mremap rather than madvise to measure stackRich Felker-1/+2