Age | Commit message (Expand) | Author | Files | Lines |
2015-04-13 | allow i386 __set_thread_area to be called more than once | Rich Felker | 1 | -1/+5 |
2015-04-13 | dynamic linker bootstrap overhaul | Rich Felker | 14 | -442/+338 |
2015-04-11 | remove mismatched arguments from vmlock function definitions | Rich Felker | 1 | -2/+2 |
2015-04-10 | apply vmlock wait to __unmapself in pthread_exit | Rich Felker | 1 | -0/+4 |
2015-04-10 | redesign and simplify vmlock system | Rich Felker | 8 | -45/+29 |
2015-04-10 | optimize out setting up robust list with kernel when not needed | Rich Felker | 4 | -7/+8 |
2015-04-10 | process robust list in pthread_exit to fix detached thread use-after-unmap | Rich Felker | 2 | -26/+27 |
2015-04-04 | fix getdelim to set the error indicator on all failures | Szabolcs Nagy | 1 | -2/+5 |
2015-04-04 | fix rpath string memory leak on failed dlopen | Rich Felker | 1 | -0/+2 |
2015-04-03 | halt dynamic linker library search on errors resolving $ORIGIN in rpath | Rich Felker | 1 | -8/+18 |
2015-04-01 | harden dynamic linker library path search | Rich Felker | 1 | -5/+16 |
2015-03-27 | regex: fix character class repetitions | Szabolcs Nagy | 1 | -0/+5 |
2015-03-23 | do not treat \0 as a backref in BRE | Szabolcs Nagy | 1 | -1/+1 |
2015-03-23 | fix internal buffer overrun in inet_pton | Rich Felker | 1 | -2/+3 |
2015-03-20 | suppress backref processing in ERE regcomp | Rich Felker | 1 | -1/+1 |
2015-03-20 | fix memory-corruption in regcomp with backslash followed by high byte | Rich Felker | 1 | -1/+1 |
2015-03-16 | block all signals (even internal ones) in cancellation signal handler | Rich Felker | 1 | -1/+2 |
2015-03-15 | avoid sending huge names as nscd passwd/group queries | Rich Felker | 1 | -2/+3 |
2015-03-15 | simplify nscd lookup code for alt passwd/group backends | Rich Felker | 4 | -15/+15 |
2015-03-15 | add alternate backend support for getgrouplist | Josiah Worcester | 3 | -24/+86 |
2015-03-11 | add aarch64 port | Szabolcs Nagy | 17 | -0/+363 |
2015-03-11 | math: add dummy implementations of 128 bit long double functions | Szabolcs Nagy | 17 | -4/+111 |
2015-03-11 | math: add ld128 exp2l based on the freebsd implementation | Szabolcs Nagy | 1 | -1/+366 |
2015-03-11 | copy the dtv pointer to the end of the pthread struct for TLS_ABOVE_TP archs | Szabolcs Nagy | 3 | -4/+5 |
2015-03-07 | fix regression in pthread_cond_wait with cancellation disabled | Rich Felker | 1 | -0/+1 |
2015-03-07 | fix FLT_ROUNDS to reflect the current rounding mode | Szabolcs Nagy | 1 | -0/+19 |
2015-03-06 | fix over-alignment of TLS, insufficient builtin TLS on 64-bit archs | Rich Felker | 2 | -4/+16 |
2015-03-04 | add legacy functions from sysinfo.h duplicating sysconf functionality | Rich Felker | 1 | -0/+22 |
2015-03-04 | fix signed left-shift overflow in pthread_condattr_setpshared | Rich Felker | 1 | -1/+1 |
2015-03-04 | remove useless check of bin match in malloc | Rich Felker | 1 | -1/+1 |
2015-03-04 | eliminate atomics in syslog setlogmask function | Rich Felker | 1 | -4/+6 |
2015-03-04 | fix init race that could lead to deadlock in malloc init code | Rich Felker | 1 | -39/+14 |
2015-03-03 | make all objects used with atomic operations volatile | Rich Felker | 25 | -57/+60 |
2015-03-02 | suppress masked cancellation in pthread_join | Rich Felker | 1 | -1/+5 |
2015-03-02 | fix namespace issue in pthread_join affecting thrd_join | Rich Felker | 1 | -1/+2 |
2015-03-02 | make aio_suspend a cancellation point and properly handle cancellation | Rich Felker | 1 | -3/+9 |
2015-03-02 | factor cancellation cleanup push/pop out of futex __timedwait function | Rich Felker | 9 | -26/+24 |
2015-02-27 | fix failure of internal futex __timedwait to report ECANCELED | Rich Felker | 1 | -1/+1 |
2015-02-26 | overhaul optimized x86_64 memset asm | Rich Felker | 1 | -26/+55 |
2015-02-26 | overhaul optimized i386 memset asm | Rich Felker | 1 | -32/+61 |
2015-02-25 | getloadavg: use sysinfo() instead of /proc/loadavg | Alexander Monakov | 1 | -11/+7 |
2015-02-23 | fix possible isatty false positives and unwanted device state changes | Rich Felker | 3 | -9/+8 |
2015-02-23 | fix breakage in pthread_cond_wait due to typo | Rich Felker | 1 | -1/+1 |
2015-02-23 | support alternate backends for the passwd and group dbs | Josiah Worcester | 4 | -2/+390 |
2015-02-23 | fix spurious errors in refactored passwd/group code | Rich Felker | 2 | -2/+2 |
2015-02-23 | fix crashes in refactored passwd/group code | Rich Felker | 2 | -4/+4 |
2015-02-22 | simplify cond var code now that cleanup handler is not needed | Rich Felker | 1 | -86/+63 |
2015-02-22 | fix pthread_cond_wait cancellation race | Rich Felker | 1 | -5/+38 |
2015-02-21 | add new masked cancellation mode | Rich Felker | 2 | -10/+16 |
2015-02-20 | prepare cancellation syscall asm for possibility of __cancel returning | Rich Felker | 5 | -11/+32 |