summaryrefslogtreecommitdiff
path: root/src/thread
AgeCommit message (Expand)AuthorLines
2019-04-10remove external __syscall function and last remaining usersRich Felker-1/+1
2019-04-10overhaul i386 syscall mechanism not to depend on external asm sourceRich Felker-0/+1
2019-04-01fix harmless-by-chance typo in priority inheritance mutex codeRich Felker-1/+1
2019-03-31implement priority inheritance mutexesRich Felker-8/+93
2019-03-29clean up access to mutex type in pthread_mutex_trylockRich Felker-2/+2
2019-03-21fix data race choosing next key slot in pthread_key_createRich Felker-1/+1
2019-03-13fix namespace violation in dependencies of mtx_lockRich Felker-1/+1
2019-02-22add membarrier syscall wrapper, refactor dynamic tls install to use itRich Felker-2/+2
2019-02-22make thread list lock a recursive lockRich Felker-11/+21
2019-02-18install dynamic tls synchronously at dlopen, streamline accessRich Felker-14/+3
2019-02-17fix data race between new pthread_key_delete and dtor executionRich Felker-2/+4
2019-02-16introduce namespace-safe rwlock aliases; use in pthread_key_createRich Felker-20/+34
2019-02-16rewrite pthread_key_delete to use global thread listRich Felker-75/+19
2019-02-16rewrite __synccall in terms of global thread listRich Felker-123/+59
2019-02-15track all live threads in an AS-safe, fully-consistent linked listRich Felker-38/+81
2019-02-15always block signals for starting new threads, refactor start argsRich Felker-56/+56
2019-02-12redesign robust mutex states to eliminate data races on type fieldRich Felker-12/+23
2019-01-16fix unintended linking dependency of pthread_key_create on __synccallRich Felker-0/+6
2018-12-19make sem_wait and sem_timedwait interruptible by signalsRich Felker-1/+1
2018-12-18don't fail pthread_sigmask/sigprocmask on invalid how when set is nullRich Felker-1/+1
2018-12-18add __timedwait backend workaround for old kernels where futex EINTRsRich Felker-0/+8
2018-10-12combine arch ABI's DTP_OFFSET into DTV pointersRich Felker-2/+2
2018-09-18limit the configurable default stack/guard size for threadsRich Felker-6/+10
2018-09-18remove redundant declarations of __default_stacksize, __default_guardsizeRich Felker-8/+0
2018-09-18fix benign data race in pthread_attr_initRich Felker-0/+2
2018-09-18fix deletion of pthread tsd keys that still have non-null values storedRich Felker-18/+101
2018-09-15check for kernel support before allowing robust mutex creationRich Felker-1/+17
2018-09-12split internal lock API out of libc.h, creating lock.hRich Felker-1/+8
2018-09-12reduce spurious inclusion of libc.hRich Felker-8/+1
2018-09-12remove unused __futex function and source fileRich Felker-7/+0
2018-09-12hide __pthread_once_full symbolRich Felker-1/+1
2018-09-12overhaul internally-public declarations using wrapper headersRich Felker-53/+6
2018-09-12use hidden visibility for sh __unmapself backendsRich Felker-2/+3
2018-09-12make arch __set_thread_area backends hiddenRich Felker-0/+9
2018-09-12make arch __clone backends hiddenRich Felker-0/+15
2018-09-12move declarations of tls setup/access functions to pthread_impl.hRich Felker-4/+0
2018-09-12for c11 mtx and cnd functions, use externally consistent type namesRich Felker-12/+17
2018-09-12make inadvertently exposed __pthread_{timed,try}join_np functions staticRich Felker-2/+2
2018-09-12fix issues from public functions defined without declaration visibleRich Felker-0/+1
2018-09-05define and use internal macros for hidden visibility, weak refsRich Felker-26/+20
2018-09-04fix namespace violation for c11 mutex functionsRich Felker-1/+3
2018-09-04in pthread_mutex_timedlock, avoid repeatedly reading mutex type fieldRich Felker-3/+4
2018-09-04in pthread_mutex_trylock, EBUSY out more directly when possibleRich Felker-2/+2
2018-08-29fix async thread cancellation on sh-fdpicRich Felker-0/+3
2018-08-29fix async thread cancellation on powerpc64Rich Felker-0/+7
2018-08-28reject invalid arguments to pthread_barrierattr_setpsharedRich Felker-0/+1
2018-08-28rewrite __aeabi_read_tp in asmSzabolcs Nagy-12/+6
2018-08-28fix deadlock in async thread self-cancellationRich Felker-1/+5
2018-08-23fix tls access on arm targets before armv6kSzabolcs Nagy-1/+1
2018-08-18mips archs: fix runaway execution if start fn passed to clone returnsSegev Finer-3/+12