about summary refs log tree commit diff
path: root/src
Commit message (Expand)AuthorAgeFilesLines
* fix misplaced semicolon in preprocessor directive (#undef h_errno)Rich Felker2012-05-161-1/+1
* remove some no-op end of string tests from regex parserRich Felker2012-05-131-4/+0
* another BRE fix: in ^*, * is literalRich Felker2012-05-131-0/+2
* let sysconf accurately report # of cpus availableRich Felker2012-05-131-2/+10
* use __h_errno_location for h_errnoRich Felker2012-05-122-0/+9
* search: add comments to tsearch_avl.cnsz2012-05-131-0/+6
* search: add tdestroy (gnu extension)nsz2012-05-131-0/+21
* Merge remote-tracking branch 'nsz/master'Rich Felker2012-05-103-5/+8
|\
| * math: fix remquo.c when x==-y and a subnormal remainder bug as wellnsz2012-05-083-5/+8
* | remove __lock dependency from exitRich Felker2012-05-101-2/+4
* | fix missing static (namespace clash)Rich Felker2012-05-101-1/+1
|/
* some assemblers don't like fistpq; use the alt. mnemonic fistpllRich Felker2012-05-073-3/+3
* fix error checking for \ at end of regex (this was broken previously)Rich Felker2012-05-071-1/+1
* fix copy and paste error in regex code causing mishandling of \) in BRERich Felker2012-05-071-1/+1
* fix regex breakage in last commit (failure to handle empty regex, etc.)Rich Felker2012-05-071-4/+1
* fix ugly bugs in TRE regex parserRich Felker2012-05-071-60/+31
* add FORCE_EVAL macro to evaluate float expr for their side effectnsz2012-05-066-24/+25
* fix unused variable warnings in new nextafter/nexttoward codeRich Felker2012-05-065-6/+12
* Merge remote-tracking branch 'nsz/master'Rich Felker2012-05-065-291/+176
|\
| * math: nextafter and nexttoward cleanupnsz2012-05-065-291/+176
* | add isastream (obsolete STREAMS junk)Rich Felker2012-05-061-0/+7
|/
* 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