about summary refs log tree commit diff
path: root/src/internal
Commit message (Expand)AuthorAgeFilesLines
* fix float parsing logic for long decimal expansionsRich Felker2012-08-171-1/+1
* add bsd fgetln functionRich Felker2012-08-111-1/+1
* fix (hopefully) all hard-coded 8's for kernel sigset_t sizeRich Felker2012-08-091-2/+5
* save AT_HWCAP from auxv for subsequent use in machine-specific codeRich Felker2012-07-272-0/+3
* fix several locks that weren't updated right for new futex-based __lockRich Felker2012-07-121-3/+3
* fix breakage of x86_64 sigaction from recent changes for mipsRich Felker2012-07-121-1/+1
* initial version of mips (o32) port, based on work by Richard Pennington (rdp)Rich Felker2012-07-111-0/+22
* use unsigned bitmask for consistency in ksigactionRich Felker2012-07-111-1/+1
* fix breakage from last commit: forgot to include ksigaction.hRich Felker2012-07-111-0/+6
* remove flush hook cruft that was never used from stdioRich Felker2012-06-191-1/+1
* add pthread_attr_setstack interface (and get)Rich Felker2012-06-091-1/+2
* fix scanning of "-0x" pseudo-hex float (must give negative zero)Rich Felker2012-06-081-1/+1
* increase default thread stack size to 80kRich Felker2012-06-021-1/+1
* enable LARGEFILE64 aliasesRich Felker2012-05-311-2/+1
* remove cruft from pthread structure (old cancellation stuff)Rich Felker2012-05-251-2/+0
* remove everything related to forkallRich Felker2012-05-221-1/+0
* fix out-of-bounds array access in pthread barriers on 64-bitRich Felker2012-05-211-1/+1
* add FORCE_EVAL macro to evaluate float expr for their side effectnsz2012-05-061-0/+13
* overhaul SSP support to use a real canaryRich Felker2012-05-031-0/+4
* 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