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