summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Expand)AuthorFilesLines
2012-05-13another BRE fix: in ^*, * is literalRich Felker1-0/+2
2012-05-13let sysconf accurately report # of cpus availableRich Felker1-2/+10
2012-05-12use __h_errno_location for h_errnoRich Felker2-0/+9
2012-05-13search: add comments to tsearch_avl.cnsz1-0/+6
2012-05-13search: add tdestroy (gnu extension)nsz1-0/+21
2012-05-10Merge remote-tracking branch 'nsz/master'Rich Felker3-5/+8
2012-05-10remove __lock dependency from exitRich Felker1-2/+4
2012-05-10fix missing static (namespace clash)Rich Felker1-1/+1
2012-05-08math: fix remquo.c when x==-y and a subnormal remainder bug as wellnsz3-5/+8
2012-05-07some assemblers don't like fistpq; use the alt. mnemonic fistpllRich Felker3-3/+3
2012-05-07fix error checking for \ at end of regex (this was broken previously)Rich Felker1-1/+1
2012-05-07fix copy and paste error in regex code causing mishandling of \) in BRERich Felker1-1/+1
2012-05-07fix regex breakage in last commit (failure to handle empty regex, etc.)Rich Felker1-4/+1
2012-05-07fix ugly bugs in TRE regex parserRich Felker1-60/+31
2012-05-06add FORCE_EVAL macro to evaluate float expr for their side effectnsz6-24/+25
2012-05-06fix unused variable warnings in new nextafter/nexttoward codeRich Felker5-6/+12
2012-05-06Merge remote-tracking branch 'nsz/master'Rich Felker5-291/+176
2012-05-06add isastream (obsolete STREAMS junk)Rich Felker1-0/+7
2012-05-06math: nextafter and nexttoward cleanupnsz5-291/+176
2012-05-05update license of njk contributed code (x86_64 asm)Rich Felker5-5/+5
2012-05-04make pthread stacks non-executableRich Felker1-1/+1
2012-05-04Merge remote-tracking branch 'nsz/master'Rich Felker2-20/+16
2012-05-04fix error reporting for dlsym with global symbolsRich Felker1-1/+2
2012-05-05math: change the formula used for acos.snsz2-20/+16
2012-05-04fix uninitialized var in vfwprintf printing 0-prec stringRich Felker1-1/+1
2012-05-03avoid setting nondefault scheduler tooRich Felker1-1/+1
2012-05-03implement stub versions of sched_*Rich Felker7-0/+49
2012-05-03overhaul SSP support to use a real canaryRich Felker6-12/+25
2012-05-02fix longstanding exit logic bugs in mbsnrtowcs and wcsnrtombsRich Felker2-4/+9
2012-05-01support alternate glibc name pow10 for exp10Rich Felker3-0/+9
2012-04-30add C stub for sqrtl (already implemented in asm on i386 and x86_64)Rich Felker1-0/+9
2012-04-30first try at writing an efficient and "correct" exp10Rich Felker3-0/+55
2012-04-30make stack protector work with gcc configured for non-tls canaryRich Felker1-0/+2
2012-04-30fix off-by-one error that caused uninitialized memory read in floatscanRich Felker1-1/+1
2012-04-29fix typo in the x86_64 rounding asmRich Felker4-4/+4
2012-04-29new math asm (abs/rounding) for x86_64Rich Felker6-0/+36
2012-04-29add linux-specific unshare syscall wrapperRich Felker1-0/+8
2012-04-29fix longstanding missing static in mq_notify (namespace pollution)Rich Felker1-1/+1
2012-04-28new fnmatch implementationRich Felker1-131/+273
2012-04-26update fnmatch to POSIX 2008 semanticsRich Felker1-4/+11
2012-04-25gdb shared library debugging supportRich Felker1-5/+32
2012-04-24first attempt at enabling stack protector supportRich Felker3-0/+28
2012-04-24ditch the priority inheritance locks; use malloc's version of lockRich Felker15-77/+54
2012-04-24internal locks: new owner of contended lock must set waiters flagRich Felker1-1/+1
2012-04-24new internal locking primitive; drop spinlocksRich Felker2-7/+29
2012-04-24new wcwidth implementation (fast table-based)Rich Felker3-179/+125
2012-04-23sync case mappings with unicode 6.1Rich Felker2-8/+30
2012-04-23optimize iswprintRich Felker1-3/+12
2012-04-23fix spurious punct class for some surrogate codepoints (invalid)Rich Felker1-59/+56
2012-04-23destubify iswalpha and update iswpunct to unicode 6.1Rich Felker5-135/+252