| Commit message (Expand) | Author | Age | Files | Lines |
* | 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 |
* | for SIGEV_THREAD timer threads, replace signal handler with sigwaitinfo | Rich Felker | 2019-02-15 | 2 | -21/+16 |
* | defer free of thread-local dlerror buffers from inconsistent context | Rich Felker | 2019-02-15 | 1 | -2/+20 |
* | fix behavior of gets when input line contains a null byte | Rich Felker | 2019-02-13 | 1 | -3/+8 |
* | redesign robust mutex states to eliminate data races on type field | Rich Felker | 2019-02-12 | 4 | -12/+23 |
* | fail fdopendir for O_PATH file descriptors | Rich Felker | 2019-02-07 | 1 | -0/+4 |
* | locale: ensure dcngettext() preserves errno | A. Wilcox | 2019-02-07 | 1 | -0/+3 |
* | fix call to __pthread_tsd_run_dtors with too many arguments | Rich Felker | 2019-01-21 | 1 | -1/+1 |
* | fix unintended linking dependency of pthread_key_create on __synccall | Rich Felker | 2019-01-16 | 1 | -0/+6 |
* | halt getspnam[_r] search on error accessing TCB shadow | Rich Felker | 2018-12-28 | 1 | -0/+2 |
* | don't set errno or return an error when getspnam[_r] finds no entry | Rich Felker | 2018-12-28 | 2 | -3/+9 |
* | make sem_wait and sem_timedwait interruptible by signals | Rich Felker | 2018-12-19 | 1 | -1/+1 |
* | don't fail pthread_sigmask/sigprocmask on invalid how when set is null | Rich Felker | 2018-12-18 | 1 | -1/+1 |
* | add __timedwait backend workaround for old kernels where futex EINTRs | Rich Felker | 2018-12-18 | 3 | -0/+15 |
* | on failed aio submission, set aiocb error and return value | Rich Felker | 2018-12-11 | 1 | -2/+4 |
* | don't create aio queue/map structures for invalid file descriptors | Rich Felker | 2018-12-11 | 1 | -4/+8 |
* | move aio queue allocation from io thread to submitting thread | Rich Felker | 2018-12-11 | 1 | -16/+21 |
* | fix and future-proof against stack overflow in aio io threads | Rich Felker | 2018-12-09 | 1 | -1/+12 |
* | add namespace-safe version of getauxval for internal use | Rich Felker | 2018-12-09 | 2 | -1/+13 |
* | fix wordexp not to read past end of string ending with lone backslash | Rich Felker | 2018-12-09 | 1 | -1/+1 |
* | fix memccpy to not access buffer past given size | Quentin Rameau | 2018-12-02 | 1 | -1/+1 |
* | optimize two-way strstr and memmem bad character shift | Rich Felker | 2018-11-08 | 2 | -2/+2 |
* | fix regression in setlocale for LC_ALL with per-category setting | Rich Felker | 2018-11-02 | 1 | -1/+1 |
* | fix failure to flush stderr when fflush(0) is called | Rich Felker | 2018-11-02 | 1 | -1/+4 |
* | fix deadlock and buffered data loss race in fclose | Rich Felker | 2018-11-02 | 1 | -13/+19 |