Age | Commit message (Expand) | Author | Files | Lines |
2014-09-18 | math: fix exp10 not to raise invalid exception on NaN | Szabolcs Nagy | 3 | -4/+13 |
2014-09-16 | fix overflow corner case in strtoul-family functions | Rich Felker | 1 | -0/+1 |
2014-09-13 | rewrite the regex pattern parser in regcomp | Szabolcs Nagy | 1 | -1081/+634 |
2014-09-08 | fix exp10l.c to include float.h | Szabolcs Nagy | 1 | -0/+1 |
2014-09-08 | prune math code on archs with binary64 long double | Szabolcs Nagy | 2 | -0/+10 |
2014-09-07 | add C11 thread creation and related thread functions | Rich Felker | 10 | -7/+84 |
2014-09-06 | add C11 condition variable functions | Jens Gustedt | 6 | -0/+57 |
2014-09-06 | add C11 mutex functions | Jens Gustedt | 6 | -0/+69 |
2014-09-06 | add C11 thread functions operating on tss_t and once_flag | Jens Gustedt | 5 | -0/+42 |
2014-09-06 | use weak symbols for the POSIX functions that will be used by C threads | Jens Gustedt | 15 | -29/+76 |
2014-09-06 | add C11 timespec_get function, with associated time.h changes for C11 | Rich Felker | 1 | -0/+12 |
2014-09-06 | fix non-static dummy function that slipped in with locale implementation | Rich Felker | 1 | -1/+1 |
2014-09-05 | add missing legacy LFS *64 symbol aliases | Szabolcs Nagy | 8 | -0/+23 |
2014-09-05 | fix memory leak in regexec when input contains illegal sequence | Szabolcs Nagy | 1 | -5/+6 |
2014-09-05 | fix off-by-one in bounds check in fpathconf | Rich Felker | 1 | -1/+1 |
2014-09-05 | fix potential read past end of buffer in getnameinfo service name lookup | Rich Felker | 1 | -1/+1 |
2014-09-05 | remove incorrect and useless check in network service name lookup code | Rich Felker | 1 | -1/+0 |
2014-09-05 | fix case mapping for U+00DF (ß) | Rich Felker | 2 | -2/+1 |
2014-09-05 | make non-waiting paths of sem_[timed]wait and pthread_join cancelable | Rich Felker | 2 | -0/+3 |
2014-09-05 | remove an extra layer of buffer copying in getnameinfo reverse dns | Rich Felker | 1 | -3/+2 |
2014-09-04 | fix multiple stdio functions' behavior on zero-length operations | Rich Felker | 4 | -9/+7 |
2014-09-04 | suppress null termination when fgets reads EOF with no data | Rich Felker | 1 | -1/+1 |
2014-09-04 | fix dn_expand empty name handling and offsets to 0 | Szabolcs Nagy | 1 | -6/+9 |
2014-08-25 | add malloc_usable_size function and non-stub malloc.h | Rich Felker | 1 | -0/+17 |
2014-08-25 | refrain from spinning on locks when there is already a waiter | Rich Felker | 5 | -5/+5 |
2014-08-25 | spin before waiting on futex in mutex and rwlock lock operations | Rich Felker | 3 | -0/+20 |
2014-08-25 | spin in sem_[timed]wait before performing futex wait | Rich Felker | 1 | -0/+5 |
2014-08-25 | sanitize number of spins in userspace before futex wait | Rich Felker | 2 | -2/+2 |
2014-08-23 | fix false ownership of stdio FILEs due to tid reuse | Rich Felker | 6 | -2/+40 |
2014-08-22 | fix fallback checks for kernels without private futex support | Rich Felker | 5 | -5/+5 |
2014-08-22 | fix use of uninitialized memory with application-provided thread stacks | Rich Felker | 1 | -0/+2 |
2014-08-18 | further simplify and optimize new cond var | Rich Felker | 1 | -29/+21 |
2014-08-18 | simplify and improve new cond var implementation | Rich Felker | 1 | -40/+22 |
2014-08-17 | redesign cond var implementation to fix multiple issues | Rich Felker | 6 | -93/+213 |
2014-08-17 | fix possible failure-to-wake deadlock with robust mutexes | Rich Felker | 1 | -1/+4 |
2014-08-17 | make pointers used in robust list volatile | Rich Felker | 4 | -11/+18 |
2014-08-16 | fix robust mutex unrecoverable status, and related clean-up | Rich Felker | 3 | -12/+4 |
2014-08-16 | fix false ownership of mutexes due to tid reuse, using robust list | Rich Felker | 4 | -23/+26 |
2014-08-16 | optimize locking against vm changes for mmap/munmap | Rich Felker | 2 | -8/+7 |
2014-08-16 | enable private futex for process-local robust mutexes | Rich Felker | 3 | -1/+25 |
2014-08-15 | make futex operations use private-futex mode when possible | Rich Felker | 23 | -66/+82 |
2014-08-13 | fix #ifdef inside a macro argument list in __init_tls.c | Szabolcs Nagy | 1 | -4/+3 |
2014-08-13 | add inline isspace in ctype.h as an optimization | Szabolcs Nagy | 2 | -8/+1 |
2014-08-08 | add dlerror message for static-linked dlsym failure | Rich Felker | 1 | -0/+2 |
2014-08-08 | fix dlerror when using dlopen with a static libc | Clément Vasseur | 1 | -0/+2 |
2014-08-08 | make endmntent function handle null argument | Timo Teräs | 1 | -1/+1 |
2014-07-31 | harden locale name handling and prevent slashes in LC_MESSAGES | Rich Felker | 1 | -3/+3 |
2014-07-31 | implement ffsl and ffsll functions | Rich Felker | 2 | -0/+14 |
2014-07-30 | add framework for mmap2 syscall unit to vary by arch | Rich Felker | 2 | -2/+7 |
2014-07-30 | plural rule evaluator rewrite for dcngettext | Szabolcs Nagy | 1 | -128/+106 |