summaryrefslogtreecommitdiff
path: root/src/internal
AgeCommit message (Expand)AuthorLines
2012-04-13fix spurious overflows in strtoull with small basesRich Felker-7/+3
2012-04-12remove magic numbers from floatscanRich Felker-5/+5
2012-04-12optimize more integer cases in floatscan; comment the whole procedureRich Felker-8/+27
2012-04-11revert invalid optimization in floatscanRich Felker-2/+2
2012-04-11fix stupid typo in floatscan that caused excess rounding of some valuesRich Felker-1/+1
2012-04-11optimize floatscan downscaler to skip results that won't be neededRich Felker-2/+3
2012-04-11simplify/debloat radix point alignment code in floatscanRich Felker-9/+4
2012-04-11optimize floatscan: avoid excessive upscalingRich Felker-27/+27
2012-04-11fix incorrect initial count in shgetc when data is already bufferedRich Felker-1/+1
2012-04-11fix bug parsing lone zero followed by junk, and hex float over-readingRich Felker-6/+5
2012-04-10fix float scanning of certain values ending in zerosRich Felker-1/+3
2012-04-10fix potential overflow in exponent readingRich Felker-1/+1
2012-04-10set errno properly when parsing floating pointRich Felker-4/+21
2012-04-10add "scan helper getc" and rework strtod, etc. to use itRich Felker-73/+111
2012-04-10new floating point parser/converterRich Felker-0/+446
2012-03-22add creal/cimag macros in complex.h (and use them in the functions defs)Rich Felker-8/+0
2012-03-19don't inline __rem_pio2l so the code size is smallernsz-0/+1
2012-03-18fix loads of missing const in new libm, and some global vars (?!) in powlRich Felker-2/+2
2012-03-16fix namespace issues for lgamma, etc.Rich Felker-0/+2
2012-03-13first commit of the new libm!Rich Felker-0/+323
2012-03-02fix obscure bug in strtoull reading the highest 16 possible valuesRich Felker-1/+1
2012-02-24new attempt at working around the gcc 3 visibility bugRich Felker-0/+7
2012-02-24remove useless attribute visibility from definitionsRich Felker-1/+1
2012-02-23cleanup and work around visibility bug in gcc 3 that affects x86_64Rich Felker-6/+11
2011-10-02synchronize cond var destruction with exiting waitsRich Felker-0/+1
2011-09-28improve pshared barriersRich Felker-1/+1
2011-09-27process-shared barrier support, based on discussion with bdonlanRich Felker-3/+5
2011-09-26fix lost signals in cond varsRich Felker-0/+1
2011-09-26cleanup various minor issues reported by nszRich Felker-3/+3
2011-09-26redo cond vars again, use sequence numbersRich Felker-3/+3
2011-09-25new futex-requeue-based pthread_cond_broadcast implementationRich Felker-3/+6
2011-09-22fix deadlock in condition wait whenever there are multiple waitersRich Felker-0/+1
2011-09-18initial commit of the arm portRich Felker-0/+15
2011-09-18overhaul clone syscall wrappingRich Felker-2/+1
2011-08-23security hardening: ensure suid programs have valid stdin/out/errRich Felker-2/+4
2011-08-12pthread and synccall cleanup, new __synccall_wait opRich Felker-0/+2
2011-08-06simplify multi-threaded errno, eliminate useless function pointerRich Felker-2/+1
2011-08-06use weak aliases rather than function pointers to simplify some codeRich Felker-2/+0
2011-08-03overhaul rwlocks to address several issuesRich Felker-4/+2
2011-08-02unify and overhaul timed futex waitsRich Felker-2/+4
2011-07-30add proper fuxed-based locking for stdioRich Felker-6/+8
2011-07-29new attempt at making set*id() safe and robustRich Felker-4/+5
2011-07-25comment non-obvious de bruijn sequence code in int parserRich Felker-0/+2
2011-07-14fix various bugs in new integer parser frameworkRich Felker-4/+7
2011-07-14new restartable integer parsing framework.Rich Felker-0/+116
2011-06-14restore use of .type in asm, but use modern @function (vs %function)Rich Felker-0/+2
2011-06-14fix race condition in pthread_killRich Felker-0/+1
2011-06-13fix sigset macro for 64-bit systems (<< was overflowing due to wrong type)Rich Felker-1/+1
2011-06-13remove all .size and .type directives for functions from the asmRich Felker-4/+0
2011-05-30implement uselocale function (minimal)Rich Felker-0/+2