summaryrefslogtreecommitdiff
path: root/src/thread
AgeCommit message (Expand)AuthorLines
2015-05-25mark mips cancellable syscall code as codeRich Felker-0/+3
2015-05-16eliminate costly tricks to avoid TLS access for current locale stateRich Felker-6/+0
2015-05-16in i386 __set_thread_area, don't assume %gs register is initially zeroRich Felker-4/+9
2015-05-06fix stack protector crashes on x32 & powerpc due to misplaced TLS canaryRich Felker-1/+1
2015-05-02fix x32 __set_thread_area failure due to junk in upper bitsRich Felker-1/+1
2015-04-22minor optimization to pthread_spin_trylockRich Felker-2/+4
2015-04-22optimize spin lock not to dirty cache line while spinningRich Felker-1/+1
2015-04-21fix mmap leak in sem_open failure path for link callRich Felker-0/+1
2015-04-18make dlerror state and message thread-local and dynamically-allocatedRich Felker-0/+2
2015-04-17fix sh build regressions in asmRich Felker-1/+1
2015-04-17fix sh __set_thread_area uninitialized return valueRich Felker-1/+2
2015-04-14use hidden __tls_get_new for tls/tlsdesc lookup fallback casesRich Felker-1/+3
2015-04-14cleanup use of visibility attributes in pthread_cancel.cRich Felker-8/+9
2015-04-14fix inconsistent visibility for internal syscall symbolsRich Felker-0/+5
2015-04-14consistently use hidden visibility for cancellable syscall internalsRich Felker-30/+96
2015-04-14fix inconsistent visibility for internal __tls_get_new functionRich Felker-3/+2
2015-04-13remove remnants of support for running in no-thread-pointer modeRich Felker-11/+5
2015-04-13allow i386 __set_thread_area to be called more than onceRich Felker-1/+5
2015-04-11remove mismatched arguments from vmlock function definitionsRich Felker-2/+2
2015-04-10apply vmlock wait to __unmapself in pthread_exitRich Felker-0/+4
2015-04-10redesign and simplify vmlock systemRich Felker-30/+18
2015-04-10optimize out setting up robust list with kernel when not neededRich Felker-6/+5
2015-04-10process robust list in pthread_exit to fix detached thread use-after-unmapRich Felker-26/+27
2015-03-16block all signals (even internal ones) in cancellation signal handlerRich Felker-1/+2
2015-03-11add aarch64 portSzabolcs Nagy-0/+69
2015-03-07fix regression in pthread_cond_wait with cancellation disabledRich Felker-0/+1
2015-03-04fix signed left-shift overflow in pthread_condattr_setpsharedRich Felker-1/+1
2015-03-03make all objects used with atomic operations volatileRich Felker-16/+18
2015-03-02suppress masked cancellation in pthread_joinRich Felker-1/+5
2015-03-02fix namespace issue in pthread_join affecting thrd_joinRich Felker-1/+2
2015-03-02factor cancellation cleanup push/pop out of futex __timedwait functionRich Felker-24/+21
2015-02-27fix failure of internal futex __timedwait to report ECANCELEDRich Felker-1/+1
2015-02-23fix breakage in pthread_cond_wait due to typoRich Felker-1/+1
2015-02-22simplify cond var code now that cleanup handler is not neededRich Felker-86/+63
2015-02-22fix pthread_cond_wait cancellation raceRich Felker-5/+38
2015-02-21add new masked cancellation modeRich Felker-10/+16
2015-02-20prepare cancellation syscall asm for possibility of __cancel returningRich Felker-11/+32
2015-02-16make pthread_exit responsible for disabling cancellationRich Felker-3/+2
2015-02-09use the internal macro name FUTEX_PRIVATE in __waitSzabolcs Nagy-1/+1
2015-02-03fix missing memory barrier in cancellation signal handlerRich Felker-0/+1
2015-01-15overhaul __synccall and fix AS-safety and other issues in set*idRich Felker-45/+138
2015-01-15suppress EINTR in sem_wait and sem_timedwaitRich Felker-1/+1
2014-11-22fix __aeabi_read_tp oversight in arm atomics/tls overhaulRich Felker-4/+0
2014-11-19overhaul ARM atomics/tls for performance and compatibilityRich Felker-12/+1
2014-10-20manually "shrink wrap" fast path in pthread_onceRich Felker-8/+12
2014-10-13eliminate global waiters count in pthread_onceRich Felker-9/+13
2014-10-10fix missing barrier in pthread_once/call_once shortcut pathRich Felker-2/+6
2014-09-07add C11 thread creation and related thread functionsRich Felker-7/+82
2014-09-06add C11 condition variable functionsJens Gustedt-0/+57
2014-09-06add C11 mutex functionsJens Gustedt-0/+69