about summary refs log tree commit diff
path: root/src/thread
Commit message (Expand)AuthorAgeFilesLines
* add pthread_getname_np functionÉrico Rolim2021-04-201-0/+25
* fix possible fd leak via missing O_CLOEXEC in pthread_setname_npÉrico Rolim2021-01-301-1/+1
* fix omission of non-stub pthread_mutexattr_getprotocolRich Felker2020-12-071-1/+1
* fix failure to preserve r6 in s390x asm; per ABI it is call-savedRich Felker2020-12-042-0/+8
* fix regression in pthread_exitRich Felker2020-11-201-0/+1
* protect destruction of process-shared mutexes against robust list racesRich Felker2020-11-191-1/+5
* pthread_exit: don't __vm_wait under thread list lockRich Felker2020-11-191-9/+15
* lift child restrictions after multi-threaded forkRich Felker2020-11-112-0/+4
* convert malloc use under libc-internal locks to use internal allocatorRich Felker2020-11-111-0/+5
* fix erroneous pthread_cond_wait mutex waiter count logic due to typoRich Felker2020-10-301-1/+1
* fix missing-wake regression in pthread_cond_waitRich Felker2020-10-301-0/+5
* fix sem_close unmapping of still-referenced semaphoreRich Felker2020-10-281-3/+5
* fix pthread_cond_wait paired with with priority-inheritance mutexRich Felker2020-10-261-6/+5
* drop use of pthread_once in mutexattr kernel support testsRich Felker2020-10-142-21/+18
* avoid set*id/setrlimit misbehavior and hang in vforked/cloned childRich Felker2020-09-171-1/+2
* fix i386 __set_thread_area fallbackRich Felker2020-08-301-0/+1
* remove redundant pthread struct members repeated for layout purposesRich Felker2020-08-271-1/+1
* fix async-cancel-safety of pthread_cancelRich Felker2020-07-061-1/+4
* make thread killlock async-signal-safe for pthread_killRich Felker2020-07-065-5/+18
* restore lock-skipping for processes that return to single-threaded stateRich Felker2020-05-222-5/+7
* don't use libc.threads_minus_1 as relaxed atomic for skipping locksRich Felker2020-05-221-1/+1
* reorder thread list unlink in pthread_exit after all locksRich Felker2020-05-221-8/+11
* harden thread start with failed scheduling against broken __cloneRich Felker2019-09-131-1/+1
* fix arm __a_barrier_oldkuser when built as thumbRich Felker2019-09-111-2/+2
* fix code path where child function returns in arm __clone built as thumbRich Felker2019-09-111-7/+3
* synchronously clean up pthread_create failure due to scheduling errorsRich Felker2019-09-061-13/+18
* set explicit scheduling for new thread from calling thread, not selfRich Felker2019-09-061-21/+12
* fix unsynchronized decrement of thread count on pthread_create errorRich Felker2019-09-061-1/+2
* in arm cancellation point asm, don't unnecessarily preserve link registerPatrick Oppenlander2019-08-061-4/+4
* fix missing declarations for pthread_join extensions in source fileRich Felker2019-08-021-0/+1
* remove x32 syscall timespec fixup hacksRich Felker2019-07-292-43/+4
* futex wait operations: add time64 syscall support, decouple 32-bit time_tRich Felker2019-07-282-3/+41
* refactor thrd_sleep and nanosleep in terms of clock_nanosleepRich Felker2019-07-271-1/+2
* add riscv64 architecture supportRich Felker2019-06-144-0/+76
* remove external __syscall function and last remaining usersRich Felker2019-04-101-1/+1
* overhaul i386 syscall mechanism not to depend on external asm sourceRich Felker2019-04-101-0/+1
* fix harmless-by-chance typo in priority inheritance mutex codeRich Felker2019-04-011-1/+1
* implement priority inheritance mutexesRich Felker2019-03-314-8/+93
* clean up access to mutex type in pthread_mutex_trylockRich Felker2019-03-291-2/+2
* fix data race choosing next key slot in pthread_key_createRich Felker2019-03-211-1/+1
* fix namespace violation in dependencies of mtx_lockRich Felker2019-03-131-1/+1
* add membarrier syscall wrapper, refactor dynamic tls install to use itRich Felker2019-02-221-2/+2
* make thread list lock a recursive lockRich Felker2019-02-221-11/+21
* install dynamic tls synchronously at dlopen, streamline accessRich Felker2019-02-183-14/+3
* fix data race between new pthread_key_delete and dtor executionRich Felker2019-02-171-2/+4
* introduce namespace-safe rwlock aliases; use in pthread_key_createRich Felker2019-02-168-20/+34
* rewrite pthread_key_delete to use global thread listRich Felker2019-02-162-75/+19
* rewrite __synccall in terms of global thread listRich Felker2019-02-162-123/+59
* track all live threads in an AS-safe, fully-consistent linked listRich Felker2019-02-154-38/+81
* always block signals for starting new threads, refactor start argsRich Felker2019-02-152-56/+56