about summary refs log tree commit diff
Commit message (Expand)AuthorAgeFilesLines
...
* make configure store its command line in config.mak for easy re-runRich Felker2013-08-161-1/+11
* fix atomicity and other issues installing dynamic linker symlinkRich Felker2013-08-161-5/+3
* some initial math asm for armhf (fabs[f] and sqrt[f])Rich Felker2013-08-1612-0/+32
* fix detection of arm hardfloatRich Felker2013-08-162-2/+2
* support floating point environment (fenv) on armhf (hard float) subarchsRich Felker2013-08-164-0/+75
* fix build of x86_64 expl assemblyRich Felker2013-08-161-1/+1
* add function types to arm crt assemblyRich Felker2013-08-153-0/+4
* math: fix pow(x,-1) to raise underflow properlySzabolcs Nagy2013-08-151-2/+14
* math: fix i386 atan2.s to raise underflow for subnormal resultsSzabolcs Nagy2013-08-152-2/+24
* math: clean up atan2.cSzabolcs Nagy2013-08-154-103/+73
* math: fix x86 asin, atan, exp, log1p to raise underflowSzabolcs Nagy2013-08-156-3/+98
* math: fix x86 expl.s to raise underflow and clean up special case handlingSzabolcs Nagy2013-08-152-45/+31
* math: fix asin, atan, log1p, tanh to raise underflow on subnormalSzabolcs Nagy2013-08-159-26/+39
* math: fix tgamma to raise underflow for large negative valuesSzabolcs Nagy2013-08-151-0/+1
* math: fix pow(0,-inf) to raise divbyzero flagSzabolcs Nagy2013-08-152-2/+2
* math: minor scalbn*.c simplificationSzabolcs Nagy2013-08-153-18/+10
* fix length computation in dn_expandRich Felker2013-08-141-3/+5
* de-duplicate dn_expand, fix return value and signature, clean upRich Felker2013-08-143-49/+24
* add arm-optimized memcpy implementation from bionic libcRich Felker2013-08-144-0/+387
* rework makefile subarch logic to allow shared filesRich Felker2013-08-141-4/+12
* add missing MSG_EXCEPT in sys/msg.hRich Felker2013-08-141-0/+1
* provide declarations for strtod_l and familyRich Felker2013-08-131-0/+4
* add subarch asm support for PIC objects/shared libcRich Felker2013-08-111-0/+3
* add missing a_or_l to atomic.h for non-x86 archsRich Felker2013-08-114-0/+20
* allow subarch-specific asm, including asm specific to the defaultRich Felker2013-08-112-0/+9
* fix _NSIG and SIGRTMAX on mipsRich Felker2013-08-102-2/+4
* fix definitions of WIFSTOPPED and WIFSIGNALED to support up to signal 127Rich Felker2013-08-102-4/+4
* add pthread_setaffinity_np and pthread_getaffinity_np functionsRich Felker2013-08-104-18/+29
* add cpu affinity interfacesRich Felker2013-08-104-0/+90
* change sigset_t functions to restrict to _NSIGRich Felker2013-08-094-5/+5
* optimize posix_spawn to avoid spurious sigaction syscallsRich Felker2013-08-093-12/+37
* fix missing errno from exec failure in posix_spawnRich Felker2013-08-091-0/+1
* block all signals, even implementation-internal ones, in faccessat childRich Felker2013-08-091-1/+1
* block signals during forkRich Felker2013-08-081-0/+3
* work around libraries with versioned symbols in dynamic linkerRich Felker2013-08-081-11/+14
* sys/personality.h: add missing C++ compatrofl0r2013-08-081-0/+7
* sys/personality.h: add missing macrosrofl0r2013-08-081-0/+33
* add Big5 charset support to iconvRich Felker2013-08-072-0/+1066
* make fcvt decimal point location for zero make more senseRich Felker2013-08-071-1/+1
* fix ecvt/fcvt decimal point position outputRich Felker2013-08-071-1/+1
* iconv support for legacy Korean encodingsRich Felker2013-08-052-0/+678
* have new timer threads unblock their own SIGTIMERRich Felker2013-08-031-2/+2
* add system for resetting TLS to initial valuesRich Felker2013-08-034-14/+56
* fix multiple bugs in SIGEV_THREAD timersRich Felker2013-08-036-22/+36
* add some new linux AT_* flagsRich Felker2013-08-031-0/+2
* fix faccessat to support AT_EACCESS flagRich Felker2013-08-031-1/+46
* collapse euidaccess to a call to faccessatRich Felker2013-08-031-9/+1
* add prototypes for euidaccess/eaccessRich Felker2013-08-031-0/+2
* add legacy euidaccess function and eaccess alias for itRich Felker2013-08-031-0/+18
* make tdestroy allow null function pointer if no destructor is neededRich Felker2013-08-021-1/+1