about summary refs log tree commit diff
path: root/src/thread
Commit message (Expand)AuthorAgeFilesLines
* fix local-dynamic model TLS on mips and powerpcRich Felker2015-06-251-2/+2
* work around mips detached thread exit breakage due to kernel regressionRich Felker2015-06-201-0/+1
* ignore ENOSYS error from mprotect in pthread_create and dynamic linkerRich Felker2015-06-171-1/+2
* switch to using trap number 31 for syscalls on shRich Felker2015-06-163-5/+5
* switch sh port's __unmapself to generic version when running on sh2/nommuRich Felker2015-06-161-3/+3
* add support for sh2 interrupt-masking-based atomics to sh portRich Felker2015-06-161-6/+0
* refactor stdio open file list handling, move it out of global libc structRich Felker2015-06-161-1/+2
* implement arch-generic version of __unmapselfRich Felker2015-06-101-0/+29
* mark mips cancellable syscall code as codeRich Felker2015-05-251-0/+3
* eliminate costly tricks to avoid TLS access for current locale stateRich Felker2015-05-161-6/+0
* in i386 __set_thread_area, don't assume %gs register is initially zeroRich Felker2015-05-161-4/+9
* fix stack protector crashes on x32 & powerpc due to misplaced TLS canaryRich Felker2015-05-061-1/+1
* fix x32 __set_thread_area failure due to junk in upper bitsRich Felker2015-05-021-1/+1
* minor optimization to pthread_spin_trylockRich Felker2015-04-222-2/+4
* optimize spin lock not to dirty cache line while spinningRich Felker2015-04-221-1/+1
* fix mmap leak in sem_open failure path for link callRich Felker2015-04-211-0/+1
* make dlerror state and message thread-local and dynamically-allocatedRich Felker2015-04-181-0/+2
* fix sh build regressions in asmRich Felker2015-04-171-1/+1
* fix sh __set_thread_area uninitialized return valueRich Felker2015-04-171-1/+2
* use hidden __tls_get_new for tls/tlsdesc lookup fallback casesRich Felker2015-04-141-1/+3
* cleanup use of visibility attributes in pthread_cancel.cRich Felker2015-04-141-8/+9
* fix inconsistent visibility for internal syscall symbolsRich Felker2015-04-141-0/+5
* consistently use hidden visibility for cancellable syscall internalsRich Felker2015-04-1411-30/+96
* fix inconsistent visibility for internal __tls_get_new functionRich Felker2015-04-141-3/+2
* remove remnants of support for running in no-thread-pointer modeRich Felker2015-04-134-11/+5
* allow i386 __set_thread_area to be called more than onceRich Felker2015-04-131-1/+5
* remove mismatched arguments from vmlock function definitionsRich Felker2015-04-111-2/+2
* apply vmlock wait to __unmapself in pthread_exitRich Felker2015-04-101-0/+4
* redesign and simplify vmlock systemRich Felker2015-04-105-30/+18
* optimize out setting up robust list with kernel when not neededRich Felker2015-04-102-6/+5
* process robust list in pthread_exit to fix detached thread use-after-unmapRich Felker2015-04-102-26/+27
* block all signals (even internal ones) in cancellation signal handlerRich Felker2015-03-161-1/+2
* add aarch64 portSzabolcs Nagy2015-03-114-0/+69
* fix regression in pthread_cond_wait with cancellation disabledRich Felker2015-03-071-0/+1
* fix signed left-shift overflow in pthread_condattr_setpsharedRich Felker2015-03-041-1/+1
* make all objects used with atomic operations volatileRich Felker2015-03-039-16/+18
* suppress masked cancellation in pthread_joinRich Felker2015-03-021-1/+5
* fix namespace issue in pthread_join affecting thrd_joinRich Felker2015-03-021-1/+2
* factor cancellation cleanup push/pop out of futex __timedwait functionRich Felker2015-03-027-24/+21
* fix failure of internal futex __timedwait to report ECANCELEDRich Felker2015-02-271-1/+1
* fix breakage in pthread_cond_wait due to typoRich Felker2015-02-231-1/+1
* simplify cond var code now that cleanup handler is not neededRich Felker2015-02-221-86/+63
* fix pthread_cond_wait cancellation raceRich Felker2015-02-221-5/+38
* add new masked cancellation modeRich Felker2015-02-212-10/+16
* prepare cancellation syscall asm for possibility of __cancel returningRich Felker2015-02-205-11/+32
* make pthread_exit responsible for disabling cancellationRich Felker2015-02-162-3/+2
* use the internal macro name FUTEX_PRIVATE in __waitSzabolcs Nagy2015-02-091-1/+1
* fix missing memory barrier in cancellation signal handlerRich Felker2015-02-031-0/+1
* overhaul __synccall and fix AS-safety and other issues in set*idRich Felker2015-01-152-45/+138
* suppress EINTR in sem_wait and sem_timedwaitRich Felker2015-01-151-1/+1