about summary refs log tree commit diff
Commit message (Expand)AuthorAgeFilesLines
* remove duplicate lfs64 cruft in stdio.hRich Felker2012-05-281-2/+0
* math: fix nextafter definition in tgmath.hnsz2012-05-281-1/+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
* fix arm syscall.h to reflect which syscalls actually exist (on EABI)Rich Felker2012-05-241-22/+0
* 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
* debloat jmp_buf in _GNU_SOURCE modeRich Felker2012-05-231-3/+0
* remove everything related to forkallRich Felker2012-05-224-78/+0
* some feature test fixes for unistd.hRich Felker2012-05-221-16/+16
* fix missing _BSD_SOURCE support in bits/*.hRich Felker2012-05-229-12/+12
* _GNU_SOURCE implies all BSD features except ones GNU rejectsRich Felker2012-05-221-1/+1
* various header cleanups, some related to _BSD_SOURCE additionRich Felker2012-05-223-17/+9
* bsd_signal is a legacy (removed) XSI function, not needed in _BSD_SOURCERich Felker2012-05-221-4/+1
* support _BSD_SOURCE feature test macroRich Felker2012-05-2222-41/+126
* 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
* move getpass decl to the right placeRich Felker2012-05-202-1/+1
* fix misplaced semicolon in preprocessor directive (#undef h_errno)Rich Felker2012-05-161-1/+1
* yet another try to get the check for gcc right...Rich Felker2012-05-141-1/+1
* fix error in last configure change (lack of escaping)Rich Felker2012-05-141-1/+1
* useless lastlog path just to make some stuff happyRich Felker2012-05-141-0/+1
* missing limit LOGIN_NAME_MAXRich Felker2012-05-141-0/+1
* correct the check for gcc (previous version failed for cross compilers)Rich Felker2012-05-131-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-123-1/+14
* susv4 removed gethostbyname, etc. legacy cruft.Rich Felker2012-05-121-9/+7
* namespace cleanup - NI_* is NOT reserved by netdb.hRich Felker2012-05-121-3/+2
* some gnu junk in netdb.hRich Felker2012-05-121-0/+8
* fix missing va_list for vsyslogRich Felker2012-05-121-2/+2
* search: add comments to tsearch_avl.cnsz2012-05-131-0/+6
* search: add tdestroy (gnu extension)nsz2012-05-132-0/+23
* add missing IN6_ARE_ADDR_EQUALRich Felker2012-05-111-0/+5
* add one more bogus legacy headerRich Felker2012-05-101-0/+9
* move vsyslog out of SYSLOG_NAMES conditionalRich Felker2012-05-101-2/+4
* 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