Age | Commit message (Expand) | Author | Files | Lines |
2014-11-19 | overhaul ARM atomics/tls for performance and compatibility | Rich Felker | 1 | -12/+1 |
2014-11-19 | save auxv pointer into libc struct early in dynamic linker startup | Rich Felker | 1 | -0/+1 |
2014-11-15 | getopt: fix optional argument processing | Felix Fietkau | 1 | -2/+2 |
2014-11-15 | implement a private state for the uchar.h functions | Jens Gustedt | 3 | -0/+6 |
2014-11-15 | fix behavior of printf with alt-form octal, zero precision, zero value | Rich Felker | 1 | -1/+1 |
2014-11-05 | math: use fnstsw consistently instead of fstsw in x87 asm | Szabolcs Nagy | 11 | -11/+11 |
2014-11-05 | math: fix x86_64 and x32 asm not to use sahf instruction | Szabolcs Nagy | 6 | -28/+14 |
2014-10-31 | fix uninitialized mode variable in openat function | Rich Felker | 1 | -1/+1 |
2014-10-31 | math: use the rounding idiom consistently | Szabolcs Nagy | 13 | -58/+89 |
2014-10-31 | fix rint.c and rintf.c when FLT_EVAL_METHOD!=0 | Szabolcs Nagy | 2 | -4/+22 |
2014-10-30 | fix invalid access by openat to possibly-missing variadic mode argument | Rich Felker | 1 | -4/+8 |
2014-10-30 | fix failure of open to read variadic mode argument for O_TMPFILE | Rich Felker | 1 | -1/+1 |
2014-10-20 | manually "shrink wrap" fast path in pthread_once | Rich Felker | 1 | -8/+12 |
2014-10-13 | implement uchar.h (C11 UTF-16/32 conversion) interfaces | Rich Felker | 4 | -0/+79 |
2014-10-13 | eliminate global waiters count in pthread_once | Rich Felker | 1 | -9/+13 |
2014-10-10 | fix missing barrier in pthread_once/call_once shortcut path | Rich Felker | 1 | -2/+6 |
2014-10-09 | fix handling of negative offsets in timezone spec strings | Rich Felker | 1 | -10/+7 |
2014-10-08 | always provide __fpclassifyl and __signbitl definitions | Rich Felker | 2 | -1/+9 |
2014-10-06 | ignore access mode bits of flags in mkostemps and functions that use it | Rich Felker | 1 | -0/+1 |
2014-10-04 | fix handling of odd lengths in swab function | Rich Felker | 1 | -1/+1 |
2014-09-22 | fix incorrect sequence generation in *rand48 prng functions | Rich Felker | 1 | -2/+2 |
2014-09-19 | fix linked list corruption in flockfile lists | Rich Felker | 1 | -0/+1 |
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 |