summaryrefslogtreecommitdiff
path: root/src/thread
AgeCommit message (Expand)AuthorFilesLines
2015-01-15overhaul __synccall and fix AS-safety and other issues in set*idRich Felker2-45/+138
2015-01-15suppress EINTR in sem_wait and sem_timedwaitRich Felker1-1/+1
2014-11-22fix __aeabi_read_tp oversight in arm atomics/tls overhaulRich Felker1-4/+0
2014-11-19overhaul ARM atomics/tls for performance and compatibilityRich Felker1-12/+1
2014-10-20manually "shrink wrap" fast path in pthread_onceRich Felker1-8/+12
2014-10-13eliminate global waiters count in pthread_onceRich Felker1-9/+13
2014-10-10fix missing barrier in pthread_once/call_once shortcut pathRich Felker1-2/+6
2014-09-07add C11 thread creation and related thread functionsRich Felker9-7/+82
2014-09-06add C11 condition variable functionsJens Gustedt6-0/+57
2014-09-06add C11 mutex functionsJens Gustedt6-0/+69
2014-09-06add C11 thread functions operating on tss_t and once_flagJens Gustedt5-0/+42
2014-09-06use weak symbols for the POSIX functions that will be used by C threadsJens Gustedt14-28/+73
2014-09-05make non-waiting paths of sem_[timed]wait and pthread_join cancelableRich Felker2-0/+3
2014-08-25refrain from spinning on locks when there is already a waiterRich Felker5-5/+5
2014-08-25spin before waiting on futex in mutex and rwlock lock operationsRich Felker3-0/+20
2014-08-25spin in sem_[timed]wait before performing futex waitRich Felker1-0/+5
2014-08-25sanitize number of spins in userspace before futex waitRich Felker2-2/+2
2014-08-23fix false ownership of stdio FILEs due to tid reuseRich Felker1-0/+2
2014-08-22fix fallback checks for kernels without private futex supportRich Felker4-4/+4
2014-08-22fix use of uninitialized memory with application-provided thread stacksRich Felker1-0/+2
2014-08-18further simplify and optimize new cond varRich Felker1-29/+21
2014-08-18simplify and improve new cond var implementationRich Felker1-40/+22
2014-08-17redesign cond var implementation to fix multiple issuesRich Felker5-88/+209
2014-08-17fix possible failure-to-wake deadlock with robust mutexesRich Felker1-1/+4
2014-08-17make pointers used in robust list volatileRich Felker3-9/+16
2014-08-16fix robust mutex unrecoverable status, and related clean-upRich Felker3-12/+4
2014-08-16fix false ownership of mutexes due to tid reuse, using robust listRich Felker4-23/+26
2014-08-16enable private futex for process-local robust mutexesRich Felker3-1/+25
2014-08-15make futex operations use private-futex mode when possibleRich Felker22-64/+74
2014-07-18add or1k (OpenRISC 1000) architecture portStefan Kristiansson4-0/+64
2014-07-16work around constant folding bug 61144 in gcc 4.9.0 and 4.9.1Rich Felker2-4/+4
2014-07-06rename file containing pthread_cleanup_push and pop for consistencyRich Felker1-0/+0
2014-07-06rework cancellation weak alias logic not to depend on archive orderRich Felker3-6/+12
2014-07-05eliminate use of cached pid from thread structureRich Felker4-8/+5
2014-07-02add locale frameworkRich Felker1-0/+7
2014-06-19separate __tls_get_addr implementation from dynamic linker/init_tlsRich Felker1-0/+17
2014-06-19optimize i386 ___tls_get_addr asmRich Felker1-1/+8
2014-06-10simplify errno implementationRich Felker1-1/+0
2014-06-10replace all remaining internal uses of pthread_self with __pthread_selfRich Felker9-10/+10
2014-06-10add thread-pointer support for pre-2.6 kernels on i386Rich Felker1-4/+18
2014-04-15fix deadlock race in pthread_onceRich Felker1-2/+1
2014-03-24fix pointer type mismatch and misplacement of constRich Felker1-2/+2
2014-03-24always initialize thread pointer at program startRich Felker5-52/+23
2014-02-27rename superh port to "sh" for consistencyRich Felker4-0/+0
2014-02-23superh portBobby Bingham4-0/+113
2014-02-23mostly-cosmetic fixups to x32 port mergeRich Felker2-6/+9
2014-02-23x32 port (diff against vanilla x86_64)rofl0r4-10/+8
2014-02-23import vanilla x86_64 code as x32rofl0r4-0/+70
2014-02-22use syscall_arg_t type for syscall prototypes in pthread coderofl0r2-3/+8
2014-02-09clone: make clone a wrapper around __cloneBobby Bingham5-18/+3