summaryrefslogtreecommitdiff
path: root/src/thread
AgeCommit message (Expand)AuthorLines
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
2014-09-06add C11 thread functions operating on tss_t and once_flagJens Gustedt-0/+42
2014-09-06use weak symbols for the POSIX functions that will be used by C threadsJens Gustedt-28/+73
2014-09-05make non-waiting paths of sem_[timed]wait and pthread_join cancelableRich Felker-0/+3
2014-08-25refrain from spinning on locks when there is already a waiterRich Felker-5/+5
2014-08-25spin before waiting on futex in mutex and rwlock lock operationsRich Felker-0/+20
2014-08-25spin in sem_[timed]wait before performing futex waitRich Felker-0/+5
2014-08-25sanitize number of spins in userspace before futex waitRich Felker-2/+2
2014-08-23fix false ownership of stdio FILEs due to tid reuseRich Felker-0/+2
2014-08-22fix fallback checks for kernels without private futex supportRich Felker-4/+4
2014-08-22fix use of uninitialized memory with application-provided thread stacksRich Felker-0/+2
2014-08-18further simplify and optimize new cond varRich Felker-29/+21
2014-08-18simplify and improve new cond var implementationRich Felker-40/+22
2014-08-17redesign cond var implementation to fix multiple issuesRich Felker-88/+209
2014-08-17fix possible failure-to-wake deadlock with robust mutexesRich Felker-1/+4
2014-08-17make pointers used in robust list volatileRich Felker-9/+16
2014-08-16fix robust mutex unrecoverable status, and related clean-upRich Felker-12/+4
2014-08-16fix false ownership of mutexes due to tid reuse, using robust listRich Felker-23/+26
2014-08-16enable private futex for process-local robust mutexesRich Felker-1/+25
2014-08-15make futex operations use private-futex mode when possibleRich Felker-64/+74
2014-07-18add or1k (OpenRISC 1000) architecture portStefan Kristiansson-0/+64
2014-07-16work around constant folding bug 61144 in gcc 4.9.0 and 4.9.1Rich Felker-4/+4
2014-07-06rename file containing pthread_cleanup_push and pop for consistencyRich Felker-0/+0
2014-07-06rework cancellation weak alias logic not to depend on archive orderRich Felker-6/+12