about summary refs log tree commit diff
path: root/src
Commit message (Expand)AuthorAgeFilesLines
* ensure that abort always worksRich Felker2012-06-021-0/+2
* add some ugly aliases for LSB ABI compatibilityRich Felker2012-06-027-0/+8
* increase default thread stack size to 80kRich Felker2012-06-021-1/+1
* remove implementation-reserved bits when saving signal maskRich Felker2012-06-021-1/+11
* remove no-longer-needed unblocking of signals in pthread_createRich Felker2012-06-021-1/+0
* add LSB abi junk for ctype functionsRich Felker2012-06-023-0/+104
* use fistpll mnemonic instead of fistpq (more widely supported) on x86_64 tooRich Felker2012-06-021-1/+1
* add LSB ABI __xstat, etc. junkRich Felker2012-05-314-0/+36
* enable LARGEFILE64 aliasesRich Felker2012-05-312-4/+1
* add ldd and main program loading support to dynamic linkerRich Felker2012-05-274-21/+89
* cleanup dynamic linker start code cruftRich Felker2012-05-273-13/+6
* fix overrun (n essentially ignored) in wcsncmpRich Felker2012-05-261-1/+1
* fix failure of mbsinit(0) (not UB; required to return nonzero)Rich Felker2012-05-261-1/+1
* fix failure of strrchr(str, 0)Rich Felker2012-05-261-1/+1
* avoid using pthread cleanup push/pop in stdio when not neededRich Felker2012-05-252-6/+14
* ensure pthread-internal signals are unblocked before threads are usedRich Felker2012-05-251-0/+1
* fix regex on armRich Felker2012-05-251-1/+1
* remove cruft from pthread structure (old cancellation stuff)Rich Felker2012-05-251-2/+0
* remove leftover cp_sp cruft from cancellation code, fix small bugRich Felker2012-05-251-3/+1
* avoid deprecated (by linux) alarm syscall; use setitimer insteadRich Felker2012-05-241-1/+4
* linux deprecated SYS_utime on some archs, so use SYS_utimes insteadRich Felker2012-05-241-1/+8
* fix bad opcode in arm syscall_cp_asmRich Felker2012-05-231-1/+1
* fix issue with longjmp out of signal handlers and cancellationRich Felker2012-05-234-52/+35
* simplify cancellation push/pop slightlyRich Felker2012-05-232-12/+9
* remove everything related to forkallRich Felker2012-05-223-77/+0
* fix typo in utimes function that made it mess up file timesRich Felker2012-05-211-1/+1
* fix out-of-bounds array access in pthread barriers on 64-bitRich Felker2012-05-211-1/+1
* 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