Age | Commit message (Expand) | Author | Files | Lines |
2012-05-25 | fix regex on arm | Rich Felker | 1 | -1/+1 |
2012-05-25 | remove cruft from pthread structure (old cancellation stuff) | Rich Felker | 1 | -2/+0 |
2012-05-25 | remove leftover cp_sp cruft from cancellation code, fix small bug | Rich Felker | 1 | -3/+1 |
2012-05-24 | fix arm syscall.h to reflect which syscalls actually exist (on EABI) | Rich Felker | 1 | -22/+0 |
2012-05-24 | avoid deprecated (by linux) alarm syscall; use setitimer instead | Rich Felker | 1 | -1/+4 |
2012-05-24 | linux deprecated SYS_utime on some archs, so use SYS_utimes instead | Rich Felker | 1 | -1/+8 |
2012-05-23 | fix bad opcode in arm syscall_cp_asm | Rich Felker | 1 | -1/+1 |
2012-05-23 | fix issue with longjmp out of signal handlers and cancellation | Rich Felker | 4 | -52/+35 |
2012-05-23 | simplify cancellation push/pop slightly | Rich Felker | 2 | -12/+9 |
2012-05-23 | debloat jmp_buf in _GNU_SOURCE mode | Rich Felker | 1 | -3/+0 |
2012-05-22 | remove everything related to forkall | Rich Felker | 4 | -78/+0 |
2012-05-22 | some feature test fixes for unistd.h | Rich Felker | 1 | -16/+16 |
2012-05-22 | fix missing _BSD_SOURCE support in bits/*.h | Rich Felker | 9 | -12/+12 |
2012-05-22 | _GNU_SOURCE implies all BSD features except ones GNU rejects | Rich Felker | 1 | -1/+1 |
2012-05-22 | various header cleanups, some related to _BSD_SOURCE addition | Rich Felker | 3 | -17/+9 |
2012-05-22 | bsd_signal is a legacy (removed) XSI function, not needed in _BSD_SOURCE | Rich Felker | 1 | -4/+1 |
2012-05-22 | support _BSD_SOURCE feature test macro | Rich Felker | 22 | -41/+126 |
2012-05-21 | fix typo in utimes function that made it mess up file times | Rich Felker | 1 | -1/+1 |
2012-05-21 | fix out-of-bounds array access in pthread barriers on 64-bit | Rich Felker | 1 | -1/+1 |
2012-05-20 | move getpass decl to the right place | Rich Felker | 2 | -1/+1 |
2012-05-16 | fix misplaced semicolon in preprocessor directive (#undef h_errno) | Rich Felker | 1 | -1/+1 |
2012-05-14 | yet another try to get the check for gcc right... | Rich Felker | 1 | -1/+1 |
2012-05-14 | fix error in last configure change (lack of escaping) | Rich Felker | 1 | -1/+1 |
2012-05-14 | useless lastlog path just to make some stuff happy | Rich Felker | 1 | -0/+1 |
2012-05-14 | missing limit LOGIN_NAME_MAX | Rich Felker | 1 | -0/+1 |
2012-05-13 | correct the check for gcc (previous version failed for cross compilers) | Rich Felker | 1 | -1/+1 |
2012-05-13 | remove some no-op end of string tests from regex parser | Rich Felker | 1 | -4/+0 |
2012-05-13 | another BRE fix: in ^*, * is literal | Rich Felker | 1 | -0/+2 |
2012-05-13 | let sysconf accurately report # of cpus available | Rich Felker | 1 | -2/+10 |
2012-05-12 | use __h_errno_location for h_errno | Rich Felker | 3 | -1/+14 |
2012-05-12 | susv4 removed gethostbyname, etc. legacy cruft. | Rich Felker | 1 | -9/+7 |
2012-05-12 | namespace cleanup - NI_* is NOT reserved by netdb.h | Rich Felker | 1 | -3/+2 |
2012-05-12 | some gnu junk in netdb.h | Rich Felker | 1 | -0/+8 |
2012-05-12 | fix missing va_list for vsyslog | Rich Felker | 1 | -2/+2 |
2012-05-13 | search: add comments to tsearch_avl.c | nsz | 1 | -0/+6 |
2012-05-13 | search: add tdestroy (gnu extension) | nsz | 2 | -0/+23 |
2012-05-11 | add missing IN6_ARE_ADDR_EQUAL | Rich Felker | 1 | -0/+5 |
2012-05-10 | add one more bogus legacy header | Rich Felker | 1 | -0/+9 |
2012-05-10 | move vsyslog out of SYSLOG_NAMES conditional | Rich Felker | 1 | -2/+4 |
2012-05-10 | Merge remote-tracking branch 'nsz/master' | Rich Felker | 3 | -5/+8 |
2012-05-10 | remove __lock dependency from exit | Rich Felker | 1 | -2/+4 |
2012-05-10 | fix missing static (namespace clash) | Rich Felker | 1 | -1/+1 |
2012-05-10 | fix missing parens in bit op macros (param.h) | Rich Felker | 1 | -1/+1 |
2012-05-10 | and another bug in setbit, etc. macros.. | Rich Felker | 1 | -1/+1 |
2012-05-10 | fix typo in sys/param.h that broke setbit, etc. macros | Rich Felker | 1 | -1/+1 |
2012-05-09 | omit declaration of basename wrongly interpreted as prototype in C++ | Rich Felker | 1 | -0/+2 |
2012-05-08 | math: fix remquo.c when x==-y and a subnormal remainder bug as well | nsz | 3 | -5/+8 |
2012-05-07 | some assemblers don't like fistpq; use the alt. mnemonic fistpll | Rich Felker | 3 | -3/+3 |
2012-05-07 | fix error checking for \ at end of regex (this was broken previously) | Rich Felker | 1 | -1/+1 |
2012-05-07 | fix copy and paste error in regex code causing mishandling of \) in BRE | Rich Felker | 1 | -1/+1 |