summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Expand)AuthorFilesLines
2019-04-10remove external __syscall function and last remaining usersRich Felker18-264/+2
2019-04-10overhaul i386 syscall mechanism not to depend on external asm sourceRich Felker7-71/+28
2019-04-09in membarrier fallback, allow for possibility that sigaction failsRich Felker1-8/+9
2019-04-03fix unintended global symbols in atanl.cDan Gohman1-3/+3
2019-04-02use __strchrnul instead of strchr and strlen in execvpeFrediano Ziglio1-2/+1
2019-04-01fix harmless-by-chance typo in priority inheritance mutex codeRich Felker1-1/+1
2019-03-31implement priority inheritance mutexesRich Felker4-8/+93
2019-03-29clean up access to mutex type in pthread_mutex_trylockRich Felker1-2/+2
2019-03-21support archs with no renameat syscall, only renameat2Drew DeVault2-2/+8
2019-03-21support archs with no mlock syscall, only mlock2Drew DeVault1-0/+4
2019-03-21fix data race choosing next key slot in pthread_key_createRich Felker1-1/+1
2019-03-14fix crash/out-of-bound read in sscanfRich Felker2-2/+3
2019-03-13fix namespace violation in dependencies of mtx_lockRich Felker1-1/+1
2019-03-13handle labels with 8-bit byte values in dn_skipnameRyan Fairfax1-2/+5
2019-03-12setvbuf: return failure if mode is invalidA. Wilcox1-1/+3
2019-03-12make FILE a complete type for pre-C11 standard profilesRich Felker2-0/+11
2019-03-05don't reject unknown/future flags in sigaltstack, allow SS_AUTODISARMRich Felker1-1/+1
2019-02-22add membarrier syscall wrapper, refactor dynamic tls install to use itRich Felker4-3/+88
2019-02-22make thread list lock a recursive lockRich Felker1-11/+21
2019-02-20fix spurious undefined behavior in getaddrinfoRich Felker1-3/+2
2019-02-20fix invalid free of partial addrinfo list with multiple servicesRich Felker1-1/+1
2019-02-18install dynamic tls synchronously at dlopen, streamline accessRich Felker8-118/+7
2019-02-17fix data race between new pthread_key_delete and dtor executionRich Felker1-2/+4
2019-02-16introduce namespace-safe rwlock aliases; use in pthread_key_createRich Felker9-20/+41
2019-02-16rewrite pthread_key_delete to use global thread listRich Felker2-75/+19
2019-02-16rewrite __synccall in terms of global thread listRich Felker3-124/+59
2019-02-15track all live threads in an AS-safe, fully-consistent linked listRich Felker7-43/+94
2019-02-15always block signals for starting new threads, refactor start argsRich Felker4-68/+56
2019-02-15for SIGEV_THREAD timer threads, replace signal handler with sigwaitinfoRich Felker2-21/+16
2019-02-15defer free of thread-local dlerror buffers from inconsistent contextRich Felker1-2/+20
2019-02-13fix behavior of gets when input line contains a null byteRich Felker1-3/+8
2019-02-12redesign robust mutex states to eliminate data races on type fieldRich Felker4-12/+23
2019-02-07fail fdopendir for O_PATH file descriptorsRich Felker1-0/+4
2019-02-07locale: ensure dcngettext() preserves errnoA. Wilcox1-0/+3
2019-01-21fix call to __pthread_tsd_run_dtors with too many argumentsRich Felker1-1/+1
2019-01-16fix unintended linking dependency of pthread_key_create on __synccallRich Felker1-0/+6
2018-12-28halt getspnam[_r] search on error accessing TCB shadowRich Felker1-0/+2
2018-12-28don't set errno or return an error when getspnam[_r] finds no entryRich Felker2-3/+9
2018-12-19make sem_wait and sem_timedwait interruptible by signalsRich Felker1-1/+1
2018-12-18don't fail pthread_sigmask/sigprocmask on invalid how when set is nullRich Felker1-1/+1
2018-12-18add __timedwait backend workaround for old kernels where futex EINTRsRich Felker3-0/+15
2018-12-11on failed aio submission, set aiocb error and return valueRich Felker1-2/+4
2018-12-11don't create aio queue/map structures for invalid file descriptorsRich Felker1-4/+8
2018-12-11move aio queue allocation from io thread to submitting threadRich Felker1-16/+21
2018-12-09fix and future-proof against stack overflow in aio io threadsRich Felker1-1/+12
2018-12-09add namespace-safe version of getauxval for internal useRich Felker2-1/+13
2018-12-09fix wordexp not to read past end of string ending with lone backslashRich Felker1-1/+1
2018-12-02fix memccpy to not access buffer past given sizeQuentin Rameau1-1/+1
2018-11-08optimize two-way strstr and memmem bad character shiftRich Felker2-2/+2
2018-11-02fix regression in setlocale for LC_ALL with per-category settingRich Felker1-1/+1