| Commit message (Expand) | Author | Age | Files | Lines |
* | fix tls offsets when p_vaddr%p_align != 0 on TLS_ABOVE_TP targets | Szabolcs Nagy | 2019-05-16 | 1 | -1/+2 |
* | fix format strings for uid/gid values in putpwent/putgrent | Rich Felker | 2019-05-16 | 2 | -2/+2 |
* | make fgetwc set error indicator for stream on encoding errors | Rich Felker | 2019-05-05 | 1 | -2/+8 |
* | allow archs to provide a 7-argument syscall if needed | Rich Felker | 2019-05-05 | 1 | -0/+1 |
* | make new math code compatible with unused variable warning/error | Rich Felker | 2019-04-20 | 1 | -3/+6 |
* | math: new pow | Szabolcs Nagy | 2019-04-17 | 4 | -303/+521 |
* | math: new exp and exp2 | Szabolcs Nagy | 2019-04-17 | 4 | -480/+434 |
* | math: new log2 | Szabolcs Nagy | 2019-04-17 | 3 | -106/+335 |
* | math: new log | Szabolcs Nagy | 2019-04-17 | 3 | -104/+454 |
* | math: new powf | Szabolcs Nagy | 2019-04-17 | 4 | -240/+232 |
* | math: new exp2f and expf | Szabolcs Nagy | 2019-04-17 | 5 | -179/+193 |
* | math: new log2f | Szabolcs Nagy | 2019-04-17 | 3 | -58/+108 |
* | math: new logf | Szabolcs Nagy | 2019-04-17 | 3 | -54/+109 |
* | math: add configuration macros | Szabolcs Nagy | 2019-04-17 | 1 | -0/+5 |
* | math: add macros for static branch prediction hints | Szabolcs Nagy | 2019-04-17 | 1 | -0/+9 |
* | math: add double precision error handling functions | Szabolcs Nagy | 2019-04-17 | 6 | -0/+35 |
* | math: add single precision error handling functions | Szabolcs Nagy | 2019-04-17 | 6 | -0/+37 |
* | math: add eval_as_float and eval_as_double | Szabolcs Nagy | 2019-04-17 | 1 | -0/+17 |
* | math: add fp_arch.h with fp_barrier and fp_force_eval | Szabolcs Nagy | 2019-04-17 | 1 | -6/+65 |
* | math: remove sun copyright from libm.h | Szabolcs Nagy | 2019-04-17 | 1 | -23/+0 |
* | math: add asuint, asuint64, asfloat and asdouble | Szabolcs Nagy | 2019-04-17 | 1 | -33/+15 |
* | math: move complex math out of libm.h | Szabolcs Nagy | 2019-04-17 | 67 | -80/+87 |
* | remove external __syscall function and last remaining users | Rich Felker | 2019-04-10 | 18 | -264/+2 |
* | overhaul i386 syscall mechanism not to depend on external asm source | Rich Felker | 2019-04-10 | 7 | -71/+28 |
* | in membarrier fallback, allow for possibility that sigaction fails | Rich Felker | 2019-04-09 | 1 | -8/+9 |
* | fix unintended global symbols in atanl.c | Dan Gohman | 2019-04-03 | 1 | -3/+3 |
* | use __strchrnul instead of strchr and strlen in execvpe | Frediano Ziglio | 2019-04-02 | 1 | -2/+1 |
* | fix harmless-by-chance typo in priority inheritance mutex code | Rich Felker | 2019-04-01 | 1 | -1/+1 |
* | implement priority inheritance mutexes | Rich Felker | 2019-03-31 | 4 | -8/+93 |
* | clean up access to mutex type in pthread_mutex_trylock | Rich Felker | 2019-03-29 | 1 | -2/+2 |
* | support archs with no renameat syscall, only renameat2 | Drew DeVault | 2019-03-21 | 2 | -2/+8 |
* | support archs with no mlock syscall, only mlock2 | Drew DeVault | 2019-03-21 | 1 | -0/+4 |
* | fix data race choosing next key slot in pthread_key_create | Rich Felker | 2019-03-21 | 1 | -1/+1 |
* | fix crash/out-of-bound read in sscanf | Rich Felker | 2019-03-14 | 2 | -2/+3 |
* | fix namespace violation in dependencies of mtx_lock | Rich Felker | 2019-03-13 | 1 | -1/+1 |
* | handle labels with 8-bit byte values in dn_skipname | Ryan Fairfax | 2019-03-13 | 1 | -2/+5 |
* | setvbuf: return failure if mode is invalid | A. Wilcox | 2019-03-12 | 1 | -1/+3 |
* | make FILE a complete type for pre-C11 standard profiles | Rich Felker | 2019-03-12 | 2 | -0/+11 |
* | don't reject unknown/future flags in sigaltstack, allow SS_AUTODISARM | Rich Felker | 2019-03-05 | 1 | -1/+1 |
* | add membarrier syscall wrapper, refactor dynamic tls install to use it | Rich Felker | 2019-02-22 | 4 | -3/+88 |
* | make thread list lock a recursive lock | Rich Felker | 2019-02-22 | 1 | -11/+21 |
* | fix spurious undefined behavior in getaddrinfo | Rich Felker | 2019-02-20 | 1 | -3/+2 |
* | fix invalid free of partial addrinfo list with multiple services | Rich Felker | 2019-02-20 | 1 | -1/+1 |
* | install dynamic tls synchronously at dlopen, streamline access | Rich Felker | 2019-02-18 | 8 | -118/+7 |
* | fix data race between new pthread_key_delete and dtor execution | Rich Felker | 2019-02-17 | 1 | -2/+4 |
* | introduce namespace-safe rwlock aliases; use in pthread_key_create | Rich Felker | 2019-02-16 | 9 | -20/+41 |
* | rewrite pthread_key_delete to use global thread list | Rich Felker | 2019-02-16 | 2 | -75/+19 |
* | rewrite __synccall in terms of global thread list | Rich Felker | 2019-02-16 | 3 | -124/+59 |
* | track all live threads in an AS-safe, fully-consistent linked list | Rich Felker | 2019-02-15 | 7 | -43/+94 |
* | always block signals for starting new threads, refactor start args | Rich Felker | 2019-02-15 | 4 | -68/+56 |