Age | Commit message (Expand) | Author | Files | Lines |
2015-11-09 | remove non-working pre-armv4t support from arm asm | Rich Felker | 2 | -4/+0 |
2015-11-02 | use explicit __cp_cancel label in cancellable syscall asm for all archs | Rich Felker | 8 | -28/+32 |
2015-11-02 | properly access mcontext_t program counter in cancellation handler | Rich Felker | 1 | -3/+4 |
2015-10-15 | add missing memory barrier to pthread_join | Bobby Bingham | 1 | -0/+1 |
2015-09-12 | make sh clone asm fdpic-compatible | Rich Felker | 1 | -3/+9 |
2015-06-25 | fix local-dynamic model TLS on mips and powerpc | Rich Felker | 1 | -2/+2 |
2015-06-20 | work around mips detached thread exit breakage due to kernel regression | Rich Felker | 1 | -0/+1 |
2015-06-17 | ignore ENOSYS error from mprotect in pthread_create and dynamic linker | Rich Felker | 1 | -1/+2 |
2015-06-16 | switch to using trap number 31 for syscalls on sh | Rich Felker | 3 | -5/+5 |
2015-06-16 | switch sh port's __unmapself to generic version when running on sh2/nommu | Rich Felker | 1 | -3/+3 |
2015-06-16 | add support for sh2 interrupt-masking-based atomics to sh port | Rich Felker | 1 | -6/+0 |
2015-06-16 | refactor stdio open file list handling, move it out of global libc struct | Rich Felker | 1 | -1/+2 |
2015-06-10 | implement arch-generic version of __unmapself | Rich Felker | 1 | -0/+29 |
2015-05-25 | mark mips cancellable syscall code as code | Rich Felker | 1 | -0/+3 |
2015-05-16 | eliminate costly tricks to avoid TLS access for current locale state | Rich Felker | 1 | -6/+0 |
2015-05-16 | in i386 __set_thread_area, don't assume %gs register is initially zero | Rich Felker | 1 | -4/+9 |
2015-05-06 | fix stack protector crashes on x32 & powerpc due to misplaced TLS canary | Rich Felker | 1 | -1/+1 |
2015-05-02 | fix x32 __set_thread_area failure due to junk in upper bits | Rich Felker | 1 | -1/+1 |
2015-04-22 | minor optimization to pthread_spin_trylock | Rich Felker | 2 | -2/+4 |
2015-04-22 | optimize spin lock not to dirty cache line while spinning | Rich Felker | 1 | -1/+1 |
2015-04-21 | fix mmap leak in sem_open failure path for link call | Rich Felker | 1 | -0/+1 |
2015-04-18 | make dlerror state and message thread-local and dynamically-allocated | Rich Felker | 1 | -0/+2 |
2015-04-17 | fix sh build regressions in asm | Rich Felker | 1 | -1/+1 |
2015-04-17 | fix sh __set_thread_area uninitialized return value | Rich Felker | 1 | -1/+2 |
2015-04-14 | use hidden __tls_get_new for tls/tlsdesc lookup fallback cases | Rich Felker | 1 | -1/+3 |
2015-04-14 | cleanup use of visibility attributes in pthread_cancel.c | Rich Felker | 1 | -8/+9 |
2015-04-14 | fix inconsistent visibility for internal syscall symbols | Rich Felker | 1 | -0/+5 |
2015-04-14 | consistently use hidden visibility for cancellable syscall internals | Rich Felker | 11 | -30/+96 |
2015-04-14 | fix inconsistent visibility for internal __tls_get_new function | Rich Felker | 1 | -3/+2 |
2015-04-13 | remove remnants of support for running in no-thread-pointer mode | Rich Felker | 4 | -11/+5 |
2015-04-13 | allow i386 __set_thread_area to be called more than once | Rich Felker | 1 | -1/+5 |
2015-04-11 | remove mismatched arguments from vmlock function definitions | Rich Felker | 1 | -2/+2 |
2015-04-10 | apply vmlock wait to __unmapself in pthread_exit | Rich Felker | 1 | -0/+4 |
2015-04-10 | redesign and simplify vmlock system | Rich Felker | 5 | -30/+18 |
2015-04-10 | optimize out setting up robust list with kernel when not needed | Rich Felker | 2 | -6/+5 |
2015-04-10 | process robust list in pthread_exit to fix detached thread use-after-unmap | Rich Felker | 2 | -26/+27 |
2015-03-16 | block all signals (even internal ones) in cancellation signal handler | Rich Felker | 1 | -1/+2 |
2015-03-11 | add aarch64 port | Szabolcs Nagy | 4 | -0/+69 |
2015-03-07 | fix regression in pthread_cond_wait with cancellation disabled | Rich Felker | 1 | -0/+1 |
2015-03-04 | fix signed left-shift overflow in pthread_condattr_setpshared | Rich Felker | 1 | -1/+1 |
2015-03-03 | make all objects used with atomic operations volatile | Rich Felker | 9 | -16/+18 |
2015-03-02 | suppress masked cancellation in pthread_join | Rich Felker | 1 | -1/+5 |
2015-03-02 | fix namespace issue in pthread_join affecting thrd_join | Rich Felker | 1 | -1/+2 |
2015-03-02 | factor cancellation cleanup push/pop out of futex __timedwait function | Rich Felker | 7 | -24/+21 |
2015-02-27 | fix failure of internal futex __timedwait to report ECANCELED | Rich Felker | 1 | -1/+1 |
2015-02-23 | fix breakage in pthread_cond_wait due to typo | Rich Felker | 1 | -1/+1 |
2015-02-22 | simplify cond var code now that cleanup handler is not needed | Rich Felker | 1 | -86/+63 |
2015-02-22 | fix pthread_cond_wait cancellation race | Rich Felker | 1 | -5/+38 |
2015-02-21 | add new masked cancellation mode | Rich Felker | 2 | -10/+16 |
2015-02-20 | prepare cancellation syscall asm for possibility of __cancel returning | Rich Felker | 5 | -11/+32 |