dns response handling: ignore presence of wrong-type RRs
[musl] / src / thread /
2022-10-19 Rich Felkerfix missing synchronization of pthread TSD keys with...
2022-10-19 Rich Felkerfix potential unsynchronized access to killlock state...
2022-08-20 Rich Felkeruse alt signal stack when present for implementation...
2021-08-06 Érico Nogueirafix error checking in pthread_getname_np
2021-04-20 Érico Rolimadd pthread_getname_np function
2021-01-30 Érico Rolimfix possible fd leak via missing O_CLOEXEC in pthread_s...
2020-12-07 Rich Felkerfix omission of non-stub pthread_mutexattr_getprotocol
2020-12-04 Rich Felkerfix failure to preserve r6 in s390x asm; per ABI it...
2020-11-20 Rich Felkerfix regression in pthread_exit
2020-11-19 Rich Felkerprotect destruction of process-shared mutexes against...
2020-11-19 Rich Felkerpthread_exit: don't __vm_wait under thread list lock
2020-11-11 Rich Felkerlift child restrictions after multi-threaded fork
2020-11-11 Rich Felkerconvert malloc use under libc-internal locks to use...
2020-10-30 Rich Felkerfix erroneous pthread_cond_wait mutex waiter count...
2020-10-30 Rich Felkerfix missing-wake regression in pthread_cond_wait
2020-10-28 Rich Felkerfix sem_close unmapping of still-referenced semaphore
2020-10-26 Rich Felkerfix pthread_cond_wait paired with with priority-inherit...
2020-10-15 Rich Felkerdrop use of pthread_once in mutexattr kernel support...
2020-09-18 Rich Felkeravoid set*id/setrlimit misbehavior and hang in vforked...
2020-08-31 Rich Felkerfix i386 __set_thread_area fallback
2020-08-27 Rich Felkerremove redundant pthread struct members repeated for...
2020-07-06 Rich Felkerfix async-cancel-safety of pthread_cancel
2020-07-06 Rich Felkermake thread killlock async-signal-safe for pthread_kill
2020-05-22 Rich Felkerrestore lock-skipping for processes that return to...
2020-05-22 Rich Felkerdon't use libc.threads_minus_1 as relaxed atomic for...
2020-05-22 Rich Felkerreorder thread list unlink in pthread_exit after all...
2019-09-13 Rich Felkerharden thread start with failed scheduling against...
2019-09-11 Rich Felkerfix arm __a_barrier_oldkuser when built as thumb
2019-09-11 Rich Felkerfix code path where child function returns in arm __clo...
2019-09-06 Rich Felkersynchronously clean up pthread_create failure due to...
2019-09-06 Rich Felkerset explicit scheduling for new thread from calling...
2019-09-06 Rich Felkerfix unsynchronized decrement of thread count on pthread...
2019-08-06 Patrick Oppenlanderin arm cancellation point asm, don't unnecessarily...
2019-08-02 Rich Felkerfix missing declarations for pthread_join extensions...
2019-07-29 Rich Felkerremove x32 syscall timespec fixup hacks
2019-07-28 Rich Felkerfutex wait operations: add time64 syscall support,...
2019-07-27 Rich Felkerrefactor thrd_sleep and nanosleep in terms of clock_nan...
2019-06-14 Rich Felkeradd riscv64 architecture support
2019-04-11 Rich Felkerremove external __syscall function and last remaining...
2019-04-10 Rich Felkeroverhaul i386 syscall mechanism not to depend on extern...
2019-04-01 Rich Felkerfix harmless-by-chance typo in priority inheritance...
2019-04-01 Rich Felkerimplement priority inheritance mutexes
2019-03-29 Rich Felkerclean up access to mutex type in pthread_mutex_trylock
2019-03-21 Rich Felkerfix data race choosing next key slot in pthread_key_create
2019-03-14 Rich Felkerfix namespace violation in dependencies of mtx_lock
2019-02-22 Rich Felkeradd membarrier syscall wrapper, refactor dynamic tls...
2019-02-22 Rich Felkermake thread list lock a recursive lock
2019-02-19 Rich Felkerinstall dynamic tls synchronously at dlopen, streamline...
2019-02-18 Rich Felkerfix data race between new pthread_key_delete and dtor...
2019-02-16 Rich Felkerintroduce namespace-safe rwlock aliases; use in pthread...
2019-02-16 Rich Felkerrewrite pthread_key_delete to use global thread list
2019-02-16 Rich Felkerrewrite __synccall in terms of global thread list
2019-02-16 Rich Felkertrack all live threads in an AS-safe, fully-consistent...
2019-02-16 Rich Felkeralways block signals for starting new threads, refactor...
2019-02-13 Rich Felkerredesign robust mutex states to eliminate data races...
2019-01-17 Rich Felkerfix unintended linking dependency of pthread_key_create...
2018-12-20 Rich Felkermake sem_wait and sem_timedwait interruptible by signals
2018-12-19 Rich Felkerdon't fail pthread_sigmask/sigprocmask on invalid how...
2018-12-18 Rich Felkeradd __timedwait backend workaround for old kernels...
2018-10-12 Rich Felkercombine arch ABI's DTP_OFFSET into DTV pointers
2018-09-19 Rich Felkerlimit the configurable default stack/guard size for...
2018-09-18 Rich Felkerremove redundant declarations of __default_stacksize...
2018-09-18 Rich Felkerfix benign data race in pthread_attr_init
2018-09-18 Rich Felkerfix deletion of pthread tsd keys that still have non...
2018-09-15 Rich Felkercheck for kernel support before allowing robust mutex...
2018-09-12 Rich Felkersplit internal lock API out of libc.h, creating lock.h
2018-09-12 Rich Felkerreduce spurious inclusion of libc.h
2018-09-12 Rich Felkerremove unused __futex function and source file
2018-09-12 Rich Felkerhide __pthread_once_full symbol
2018-09-12 Rich Felkeroverhaul internally-public declarations using wrapper...
2018-09-12 Rich Felkeruse hidden visibility for sh __unmapself backends
2018-09-12 Rich Felkermake arch __set_thread_area backends hidden
2018-09-12 Rich Felkermake arch __clone backends hidden
2018-09-12 Rich Felkermove declarations of tls setup/access functions to...
2018-09-12 Rich Felkerfor c11 mtx and cnd functions, use externally consisten...
2018-09-12 Rich Felkermake inadvertently exposed __pthread_{timed,try}join_np...
2018-09-12 Rich Felkerfix issues from public functions defined without declar...
2018-09-05 Rich Felkerdefine and use internal macros for hidden visibility...
2018-09-05 Rich Felkerfix namespace violation for c11 mutex functions
2018-09-05 Rich Felkerin pthread_mutex_timedlock, avoid repeatedly reading...
2018-09-05 Rich Felkerin pthread_mutex_trylock, EBUSY out more directly when...
2018-08-29 Rich Felkerfix async thread cancellation on sh-fdpic
2018-08-29 Rich Felkerfix async thread cancellation on powerpc64
2018-08-28 Rich Felkerreject invalid arguments to pthread_barrierattr_setpshared
2018-08-28 Szabolcs Nagyrewrite __aeabi_read_tp in asm
2018-08-28 Rich Felkerfix deadlock in async thread self-cancellation
2018-08-23 Szabolcs Nagyfix tls access on arm targets before armv6k
2018-08-18 Segev Finermips archs: fix runaway execution if start fn passed...
2018-08-16 Rich Felkerfix pthread_create return value with PTHREAD_EXPLICIT_SCHED
2018-07-27 Rich Felkermake pthread_attr_init honor defaults set by pthread_se...
2018-06-19 Rich Felkeradd m68k port
2018-05-09 Rich Felkermake linking of thread-start with explicit scheduling...
2018-05-09 Rich Felkerimprove design of thread-start with explicit scheduling...
2018-05-06 Rich Felkerimprove joinable/detached thread state handling
2018-05-05 Rich Felkerimprove pthread_exit synchronization with functions...
2018-05-04 Rich Felkerremove incorrect ESRCH error from pthread_kill
2018-05-02 Rich Felkeruse a dedicated futex object for pthread_join instead...
2018-02-03 William Pitcockstore pthread stack guard sizes for pthread_getattr_np
2018-01-09 Jens Gustedtrevise the definition of multiple basic locks in the...
2018-01-09 Jens Gustedtconsistently use the LOCK an UNLOCK macros
next