| Commit message (Expand) | Author | Age | Files | Lines |
* | synchronously clean up pthread_create failure due to scheduling errors | Rich Felker | 2019-09-06 | 1 | -13/+18 |
* | set explicit scheduling for new thread from calling thread, not self | Rich Felker | 2019-09-06 | 1 | -21/+12 |
* | fix unsynchronized decrement of thread count on pthread_create error | Rich Felker | 2019-09-06 | 1 | -1/+2 |
* | in arm cancellation point asm, don't unnecessarily preserve link register | Patrick Oppenlander | 2019-08-06 | 1 | -4/+4 |
* | fix missing declarations for pthread_join extensions in source file | Rich Felker | 2019-08-02 | 1 | -0/+1 |
* | remove x32 syscall timespec fixup hacks | Rich Felker | 2019-07-29 | 2 | -43/+4 |
* | futex wait operations: add time64 syscall support, decouple 32-bit time_t | Rich Felker | 2019-07-28 | 2 | -3/+41 |
* | refactor thrd_sleep and nanosleep in terms of clock_nanosleep | Rich Felker | 2019-07-27 | 1 | -1/+2 |
* | add riscv64 architecture support | Rich Felker | 2019-06-14 | 4 | -0/+76 |
* | remove external __syscall function and last remaining users | Rich Felker | 2019-04-10 | 1 | -1/+1 |
* | overhaul i386 syscall mechanism not to depend on external asm source | Rich Felker | 2019-04-10 | 1 | -0/+1 |
* | fix harmless-by-chance typo in priority inheritance mutex code | Rich Felker | 2019-04-01 | 1 | -1/+1 |
* | implement priority inheritance mutexes | Rich Felker | 2019-03-31 | 4 | -8/+93 |
* | clean up access to mutex type in pthread_mutex_trylock | Rich Felker | 2019-03-29 | 1 | -2/+2 |
* | fix data race choosing next key slot in pthread_key_create | Rich Felker | 2019-03-21 | 1 | -1/+1 |
* | fix namespace violation in dependencies of mtx_lock | Rich Felker | 2019-03-13 | 1 | -1/+1 |
* | add membarrier syscall wrapper, refactor dynamic tls install to use it | Rich Felker | 2019-02-22 | 1 | -2/+2 |
* | make thread list lock a recursive lock | Rich Felker | 2019-02-22 | 1 | -11/+21 |
* | install dynamic tls synchronously at dlopen, streamline access | Rich Felker | 2019-02-18 | 3 | -14/+3 |
* | fix data race between new pthread_key_delete and dtor execution | Rich Felker | 2019-02-17 | 1 | -2/+4 |
* | introduce namespace-safe rwlock aliases; use in pthread_key_create | Rich Felker | 2019-02-16 | 8 | -20/+34 |
* | rewrite pthread_key_delete to use global thread list | Rich Felker | 2019-02-16 | 2 | -75/+19 |
* | rewrite __synccall in terms of global thread list | Rich Felker | 2019-02-16 | 2 | -123/+59 |
* | track all live threads in an AS-safe, fully-consistent linked list | Rich Felker | 2019-02-15 | 4 | -38/+81 |
* | always block signals for starting new threads, refactor start args | Rich Felker | 2019-02-15 | 2 | -56/+56 |
* | redesign robust mutex states to eliminate data races on type field | Rich Felker | 2019-02-12 | 4 | -12/+23 |
* | fix unintended linking dependency of pthread_key_create on __synccall | Rich Felker | 2019-01-16 | 1 | -0/+6 |
* | make sem_wait and sem_timedwait interruptible by signals | Rich Felker | 2018-12-19 | 1 | -1/+1 |
* | don't fail pthread_sigmask/sigprocmask on invalid how when set is null | Rich Felker | 2018-12-18 | 1 | -1/+1 |
* | add __timedwait backend workaround for old kernels where futex EINTRs | Rich Felker | 2018-12-18 | 1 | -0/+8 |
* | combine arch ABI's DTP_OFFSET into DTV pointers | Rich Felker | 2018-10-12 | 1 | -2/+2 |
* | limit the configurable default stack/guard size for threads | Rich Felker | 2018-09-18 | 2 | -6/+10 |
* | remove redundant declarations of __default_stacksize, __default_guardsize | Rich Felker | 2018-09-18 | 3 | -8/+0 |
* | fix benign data race in pthread_attr_init | Rich Felker | 2018-09-18 | 1 | -0/+2 |
* | fix deletion of pthread tsd keys that still have non-null values stored | Rich Felker | 2018-09-18 | 2 | -18/+101 |
* | check for kernel support before allowing robust mutex creation | Rich Felker | 2018-09-15 | 1 | -1/+17 |
* | split internal lock API out of libc.h, creating lock.h | Rich Felker | 2018-09-12 | 8 | -1/+8 |
* | reduce spurious inclusion of libc.h | Rich Felker | 2018-09-12 | 8 | -8/+1 |
* | remove unused __futex function and source file | Rich Felker | 2018-09-12 | 1 | -7/+0 |
* | hide __pthread_once_full symbol | Rich Felker | 2018-09-12 | 1 | -1/+1 |
* | overhaul internally-public declarations using wrapper headers | Rich Felker | 2018-09-12 | 22 | -53/+6 |
* | use hidden visibility for sh __unmapself backends | Rich Felker | 2018-09-12 | 2 | -2/+3 |
* | make arch __set_thread_area backends hidden | Rich Felker | 2018-09-12 | 9 | -0/+9 |
* | make arch __clone backends hidden | Rich Felker | 2018-09-12 | 15 | -0/+15 |
* | move declarations of tls setup/access functions to pthread_impl.h | Rich Felker | 2018-09-12 | 2 | -4/+0 |
* | for c11 mtx and cnd functions, use externally consistent type names | Rich Felker | 2018-09-12 | 6 | -12/+17 |
* | make inadvertently exposed __pthread_{timed,try}join_np functions static | Rich Felker | 2018-09-12 | 1 | -2/+2 |
* | fix issues from public functions defined without declaration visible | Rich Felker | 2018-09-12 | 1 | -0/+1 |
* | define and use internal macros for hidden visibility, weak refs | Rich Felker | 2018-09-05 | 8 | -26/+20 |
* | fix namespace violation for c11 mutex functions | Rich Felker | 2018-09-04 | 1 | -1/+3 |