about summary refs log tree commit diff
path: root/src/thread
Commit message (Expand)AuthorAgeFilesLines
* riscv32: add thread supportStefan O'Rear2024-02-294-0/+76
* loongarch64 __clone: align stack pointer mod 16wanghongliang2024-02-261-0/+1
* add loongarch64 portHongliang Wang2024-02-164-0/+71
* synccall: add separate exit_sem to fix thread release logic bugMarkus Wichmann2023-11-061-3/+5
* fix pthread_detach inadvertently acting as cancellation point in race caseRich Felker2023-02-111-2/+6
* use libc-internal malloc for pthread_atforkRich Felker2022-12-171-0/+5
* semaphores: fix missed wakes from ABA bug in waiter count logicRich Felker2022-12-134-12/+19
* pthread_atfork: fix return value on malloc failureAlexey Izbyshev2022-11-121-1/+2
* fix async thread cancellation stack alignmentRich Felker2022-11-051-1/+6
* fix missing synchronization of pthread TSD keys with MT-forkRich Felker2022-10-191-0/+8
* fix potential unsynchronized access to killlock state at thread exitRich Felker2022-10-191-6/+10
* use alt signal stack when present for implementation-internal signalsRich Felker2022-08-202-2/+2
* fix error checking in pthread_getname_npÉrico Nogueira2021-08-061-1/+1
* 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