about summary refs log tree commit diff
path: root/src/internal
Commit message (Expand)AuthorAgeFilesLines
...
* fix off-by-one error that caused uninitialized memory read in floatscanRich Felker2012-04-301-1/+1
* ditch the priority inheritance locks; use malloc's version of lockRich Felker2012-04-242-3/+3
* new internal locking primitive; drop spinlocksRich Felker2012-04-241-1/+2
* remove redundant (unmaintained) check in floatscanRich Felker2012-04-221-3/+3
* make floatscan correctly set errno for overflow/underflowRich Felker2012-04-211-4/+16
* skip leading zeros even after decimal point in floatscanRich Felker2012-04-211-4/+9
* fix overread (consuming an extra byte) scanning NANRich Felker2012-04-211-1/+1
* fix really bad breakage in strtol, etc.: failure to accept leading spacesRich Felker2012-04-193-4/+5
* fix typo in exponent reading code or floatsRich Felker2012-04-181-1/+1
* fix failure to read infinity in scanfRich Felker2012-04-171-3/+4
* fix failure of int parser to unget an initial mismatching characterRich Felker2012-04-171-0/+1
* use the new integer parser (FILE/shgetc based) for strtol, wcstol, etc.Rich Felker2012-04-162-127/+0
* new scanf implementation and corresponding integer parser/converterRich Felker2012-04-163-0/+107
* fix buggy limiter handling in shgetcRich Felker2012-04-161-4/+3
* fix broken shgetc limiter logic (wasn't working)Rich Felker2012-04-162-2/+5
* floatscan: fix incorrect count of leading nonzero digitsRich Felker2012-04-161-1/+1
* use fast version of the int reading code for the high-order digits tooRich Felker2012-04-131-3/+13
* use macros instead of inline functions in shgetc.hRich Felker2012-04-131-20/+4
* fix spurious overflows in strtoull with small basesRich Felker2012-04-131-7/+3
* remove magic numbers from floatscanRich Felker2012-04-121-5/+5
* optimize more integer cases in floatscan; comment the whole procedureRich Felker2012-04-121-8/+27
* revert invalid optimization in floatscanRich Felker2012-04-111-2/+2
* fix stupid typo in floatscan that caused excess rounding of some valuesRich Felker2012-04-111-1/+1
* optimize floatscan downscaler to skip results that won't be neededRich Felker2012-04-111-2/+3
* simplify/debloat radix point alignment code in floatscanRich Felker2012-04-111-9/+4
* optimize floatscan: avoid excessive upscalingRich Felker2012-04-111-27/+27
* fix incorrect initial count in shgetc when data is already bufferedRich Felker2012-04-111-1/+1
* fix bug parsing lone zero followed by junk, and hex float over-readingRich Felker2012-04-111-6/+5
* fix float scanning of certain values ending in zerosRich Felker2012-04-101-1/+3
* fix potential overflow in exponent readingRich Felker2012-04-101-1/+1
* set errno properly when parsing floating pointRich Felker2012-04-101-4/+21
* add "scan helper getc" and rework strtod, etc. to use itRich Felker2012-04-105-73/+111
* new floating point parser/converterRich Felker2012-04-102-0/+446
* add creal/cimag macros in complex.h (and use them in the functions defs)Rich Felker2012-03-221-8/+0
* don't inline __rem_pio2l so the code size is smallernsz2012-03-191-0/+1
* fix loads of missing const in new libm, and some global vars (?!) in powlRich Felker2012-03-181-2/+2
* fix namespace issues for lgamma, etc.Rich Felker2012-03-161-0/+2
* first commit of the new libm!Rich Felker2012-03-132-0/+323
* fix obscure bug in strtoull reading the highest 16 possible valuesRich Felker2012-03-021-1/+1
* new attempt at working around the gcc 3 visibility bugRich Felker2012-02-242-0/+7
* remove useless attribute visibility from definitionsRich Felker2012-02-241-1/+1
* cleanup and work around visibility bug in gcc 3 that affects x86_64Rich Felker2012-02-232-6/+11
* synchronize cond var destruction with exiting waitsRich Felker2011-10-021-0/+1
* improve pshared barriersRich Felker2011-09-281-1/+1
* process-shared barrier support, based on discussion with bdonlanRich Felker2011-09-271-3/+5
* fix lost signals in cond varsRich Felker2011-09-261-0/+1
* cleanup various minor issues reported by nszRich Felker2011-09-261-3/+3
* redo cond vars again, use sequence numbersRich Felker2011-09-261-3/+3
* new futex-requeue-based pthread_cond_broadcast implementationRich Felker2011-09-251-3/+6
* fix deadlock in condition wait whenever there are multiple waitersRich Felker2011-09-221-0/+1