about summary refs log tree commit diff
path: root/src
Commit message (Expand)AuthorAgeFilesLines
* update license of njk contributed code (x86_64 asm)Rich Felker2012-05-055-5/+5
* make pthread stacks non-executableRich Felker2012-05-041-1/+1
* Merge remote-tracking branch 'nsz/master'Rich Felker2012-05-042-20/+16
|\
| * math: change the formula used for acos.snsz2012-05-052-20/+16
* | fix error reporting for dlsym with global symbolsRich Felker2012-05-041-1/+2
|/
* fix uninitialized var in vfwprintf printing 0-prec stringRich Felker2012-05-041-1/+1
* avoid setting nondefault scheduler tooRich Felker2012-05-031-1/+1
* implement stub versions of sched_*Rich Felker2012-05-037-0/+49
* overhaul SSP support to use a real canaryRich Felker2012-05-036-12/+25
* fix longstanding exit logic bugs in mbsnrtowcs and wcsnrtombsRich Felker2012-05-022-4/+9
* support alternate glibc name pow10 for exp10Rich Felker2012-05-013-0/+9
* add C stub for sqrtl (already implemented in asm on i386 and x86_64)Rich Felker2012-04-301-0/+9
* first try at writing an efficient and "correct" exp10Rich Felker2012-04-303-0/+55
* make stack protector work with gcc configured for non-tls canaryRich Felker2012-04-301-0/+2
* fix off-by-one error that caused uninitialized memory read in floatscanRich Felker2012-04-301-1/+1
* fix typo in the x86_64 rounding asmRich Felker2012-04-294-4/+4
* new math asm (abs/rounding) for x86_64Rich Felker2012-04-296-0/+36
* add linux-specific unshare syscall wrapperRich Felker2012-04-291-0/+8
* fix longstanding missing static in mq_notify (namespace pollution)Rich Felker2012-04-291-1/+1
* new fnmatch implementationRich Felker2012-04-281-131/+273
* update fnmatch to POSIX 2008 semanticsRich Felker2012-04-261-4/+11
* gdb shared library debugging supportRich Felker2012-04-251-5/+32
* first attempt at enabling stack protector supportRich Felker2012-04-243-0/+28
* ditch the priority inheritance locks; use malloc's version of lockRich Felker2012-04-2415-77/+54
* internal locks: new owner of contended lock must set waiters flagRich Felker2012-04-241-1/+1
* new internal locking primitive; drop spinlocksRich Felker2012-04-242-7/+29
* new wcwidth implementation (fast table-based)Rich Felker2012-04-243-179/+125
* sync case mappings with unicode 6.1Rich Felker2012-04-232-8/+30
* optimize iswprintRich Felker2012-04-231-3/+12
* fix spurious punct class for some surrogate codepoints (invalid)Rich Felker2012-04-231-59/+56
* destubify iswalpha and update iswpunct to unicode 6.1Rich Felker2012-04-235-135/+252
* make dlerror produce informative resultsRich Felker2012-04-231-4/+15
* implement getusershell, etc. legacy functionsRich Felker2012-04-221-0/+33
* remove redundant (unmaintained) check in floatscanRich Felker2012-04-221-3/+3
* add getresuid and getresgid syscall wrappersRich Felker2012-04-222-0/+16
* fix major breakage in iconv, bogus rejecting of dest charsetsRich Felker2012-04-211-1/+1
* 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 broken sysconf when correct value is -1Rich Felker2012-04-211-1/+1
* further fixes to leading space issue (forgot the wide versions)Rich Felker2012-04-192-5/+9
* fix really bad breakage in strtol, etc.: failure to accept leading spacesRich Felker2012-04-195-10/+9
* legacy junk compatibility grab-bagRich Felker2012-04-182-0/+2
* fix typo in exponent reading code or floatsRich Felker2012-04-181-1/+1
* fix wide scanf's handling of input failure on %c, and simplify %[Rich Felker2012-04-171-5/+6
* fix failure to distinguish input/match failure in wide %[ scanfRich Felker2012-04-172-2/+4
* fix over-read in %ls with non-wide scanfRich Felker2012-04-171-0/+1
* fix broken %s and %[ with no width specifier in wide scanfRich Felker2012-04-171-3/+7
* 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