summaryrefslogtreecommitdiff
path: root/src/internal
AgeCommit message (Expand)AuthorFilesLines
2012-06-09add pthread_attr_setstack interface (and get)Rich Felker1-1/+2
2012-06-08fix scanning of "-0x" pseudo-hex float (must give negative zero)Rich Felker1-1/+1
2012-06-02increase default thread stack size to 80kRich Felker1-1/+1
2012-05-31enable LARGEFILE64 aliasesRich Felker1-2/+1
2012-05-25remove cruft from pthread structure (old cancellation stuff)Rich Felker1-2/+0
2012-05-22remove everything related to forkallRich Felker1-1/+0
2012-05-21fix out-of-bounds array access in pthread barriers on 64-bitRich Felker1-1/+1
2012-05-06add FORCE_EVAL macro to evaluate float expr for their side effectnsz1-0/+13
2012-05-03overhaul SSP support to use a real canaryRich Felker1-0/+4
2012-04-30fix off-by-one error that caused uninitialized memory read in floatscanRich Felker1-1/+1
2012-04-24ditch the priority inheritance locks; use malloc's version of lockRich Felker2-3/+3
2012-04-24new internal locking primitive; drop spinlocksRich Felker1-1/+2
2012-04-22remove redundant (unmaintained) check in floatscanRich Felker1-3/+3
2012-04-21make floatscan correctly set errno for overflow/underflowRich Felker1-4/+16
2012-04-21skip leading zeros even after decimal point in floatscanRich Felker1-4/+9
2012-04-21fix overread (consuming an extra byte) scanning NANRich Felker1-1/+1
2012-04-19fix really bad breakage in strtol, etc.: failure to accept leading spacesRich Felker3-4/+5
2012-04-18fix typo in exponent reading code or floatsRich Felker1-1/+1
2012-04-17fix failure to read infinity in scanfRich Felker1-3/+4
2012-04-17fix failure of int parser to unget an initial mismatching characterRich Felker1-0/+1
2012-04-16use the new integer parser (FILE/shgetc based) for strtol, wcstol, etc.Rich Felker2-127/+0
2012-04-16new scanf implementation and corresponding integer parser/converterRich Felker3-0/+107
2012-04-16fix buggy limiter handling in shgetcRich Felker1-4/+3
2012-04-16fix broken shgetc limiter logic (wasn't working)Rich Felker2-2/+5
2012-04-16floatscan: fix incorrect count of leading nonzero digitsRich Felker1-1/+1
2012-04-13use fast version of the int reading code for the high-order digits tooRich Felker1-3/+13
2012-04-13use macros instead of inline functions in shgetc.hRich Felker1-20/+4
2012-04-13fix spurious overflows in strtoull with small basesRich Felker1-7/+3
2012-04-12remove magic numbers from floatscanRich Felker1-5/+5
2012-04-12optimize more integer cases in floatscan; comment the whole procedureRich Felker1-8/+27
2012-04-11revert invalid optimization in floatscanRich Felker1-2/+2
2012-04-11fix stupid typo in floatscan that caused excess rounding of some valuesRich Felker1-1/+1
2012-04-11optimize floatscan downscaler to skip results that won't be neededRich Felker1-2/+3
2012-04-11simplify/debloat radix point alignment code in floatscanRich Felker1-9/+4
2012-04-11optimize floatscan: avoid excessive upscalingRich Felker1-27/+27
2012-04-11fix incorrect initial count in shgetc when data is already bufferedRich Felker1-1/+1
2012-04-11fix bug parsing lone zero followed by junk, and hex float over-readingRich Felker1-6/+5
2012-04-10fix float scanning of certain values ending in zerosRich Felker1-1/+3
2012-04-10fix potential overflow in exponent readingRich Felker1-1/+1
2012-04-10set errno properly when parsing floating pointRich Felker1-4/+21
2012-04-10add "scan helper getc" and rework strtod, etc. to use itRich Felker5-73/+111
2012-04-10new floating point parser/converterRich Felker2-0/+446
2012-03-22add creal/cimag macros in complex.h (and use them in the functions defs)Rich Felker1-8/+0
2012-03-19don't inline __rem_pio2l so the code size is smallernsz1-0/+1
2012-03-18fix loads of missing const in new libm, and some global vars (?!) in powlRich Felker1-2/+2
2012-03-16fix namespace issues for lgamma, etc.Rich Felker1-0/+2
2012-03-13first commit of the new libm!Rich Felker2-0/+323
2012-03-02fix obscure bug in strtoull reading the highest 16 possible valuesRich Felker1-1/+1
2012-02-24new attempt at working around the gcc 3 visibility bugRich Felker2-0/+7
2012-02-24remove useless attribute visibility from definitionsRich Felker1-1/+1