aboutsummaryrefslogtreecommitdiff
path: root/nptl/pthread_create.c
AgeCommit message (Expand)AuthorFilesLines
2024-01-01Update copyright dates with scripts/update-copyrightsPaul Eggert1-1/+1
2023-11-07nptl: Decorate thread stack on pthread_createAdhemerval Zanella1-0/+6
2023-09-04__call_tls_dtors: Use call_function_static_weakSamuel Thibault1-4/+1
2023-06-02Fix all the remaining misspellings -- BZ 25337Paul Pluzhnikov1-1/+1
2023-01-06Update copyright dates with scripts/update-copyrightsJoseph Myers1-1/+1
2022-11-01nptl: Fix pthread_create.c build with clangAdhemerval Zanella1-2/+4
2022-09-26Use atomic_exchange_release/acquireWilco Dijkstra1-1/+1
2022-09-23Use C11 atomics instead of atomic_decrement_and_testWilco Dijkstra1-1/+1
2022-09-23Use C11 atomics instead of atomic_increment(_val)Wilco Dijkstra1-1/+1
2022-09-23Use C11 atomics instead of atomic_and/orWilco Dijkstra1-1/+1
2022-09-13Use relaxed atomics since there is no MO dependenceWilco Dijkstra1-1/+1
2022-09-09Use C11 atomics instead of atomic_decrement(_val)Wilco Dijkstra1-1/+1
2022-06-30Refactor internal-signals.hAdhemerval Zanella1-8/+8
2022-06-24misc: Optimize internal usage of __libc_single_threadedAdhemerval Zanella1-1/+4
2022-01-01Update copyright dates with scripts/update-copyrightsPaul Eggert1-1/+1
2021-12-09nptl: rseq failure after registration on main thread is fatalFlorian Weimer1-1/+2
2021-12-09nptl: Add glibc.pthread.rseq tunable to control rseq registrationFlorian Weimer1-1/+9
2021-12-09nptl: Add rseq registrationFlorian Weimer1-0/+13
2021-11-24nptl: Do not set signal mask on second setjmp return [BZ #28607]Florian Weimer1-2/+2
2021-09-23nptl: Avoid setxid deadlock with blocked signals in thread exit [BZ #28361]Florian Weimer1-2/+10
2021-09-13nptl: Fix race between pthread_kill and thread exit (bug 12889)Florian Weimer1-0/+14
2021-09-03Remove "Contributed by" linesSiddhesh Poyarekar1-1/+0
2021-07-14Add an internal wrapper for clone, clone2 and clone3H.J. Lu1-16/+22
2021-07-09Force building with -fno-commonFlorian Weimer1-2/+2
2021-06-28nptl: Export libthread_db-used symbols under GLIBC_PRIVATEFlorian Weimer1-5/+8
2021-06-09nptl: Avoid async cancellation to wrongly update __nptl_nthreads (BZ #19366)Adhemerval Zanella1-7/+4
2021-06-09nptl: Install cancellation handler on pthread_cancelAdhemerval Zanella1-15/+0
2021-06-09nptl: Deallocate the thread stack on setup failure (BZ #19511)Adhemerval Zanella1-86/+76
2021-06-04nptl: Remove exit-thread.hAdhemerval Zanella1-2/+2
2021-05-27nptl: Move createthread to pthread_createAdhemerval Zanella1-13/+115
2021-05-27nptl: Install SIGSETXID handler with SA_ONSTACK [BZ #27914]Florian Weimer1-2/+5
2021-05-21nptl: Move pthread_create, thrd_create into libcFlorian Weimer1-2/+9
2021-05-21nptl: Move semi-public __pthread_get_minstack symbol into libcFlorian Weimer1-0/+4
2021-05-21nptl: Perform signal initialization upon pthread_createFlorian Weimer1-2/+43
2021-05-11nptl: Move __free_tcb into libcFlorian Weimer1-26/+1
2021-05-11nptl: Move stack cache management, __libpthread_freeres into libcFlorian Weimer1-2/+2
2021-05-11nptl: Remove always-disabled debugging supportFlorian Weimer1-49/+0
2021-05-05nptl: Consolidate async cancel enable/disable implementation in libcFlorian Weimer1-2/+2
2021-04-21nptl: Move part of TCB initialization from libpthread to __tls_init_tpFlorian Weimer1-2/+2
2021-04-21nptl: Move __nptl_deallocate_tsd into libcFlorian Weimer1-94/+0
2021-04-21nptl: Move internal __nptl_nthreads variable into libcFlorian Weimer1-4/+0
2021-04-21nptl_db: Support different libpthread/ld.so load orders (bug 27744)Florian Weimer1-0/+8
2021-01-02Update copyright dates with scripts/update-copyrightsPaul Eggert1-1/+1
2020-11-16nptl: Move stack list variables into _rtld_globalFlorian Weimer1-4/+4
2020-10-30Disable spurious -Wstringop-overflow for setjmp/longjmp (bug 26647)Joseph Myers1-0/+10
2020-07-16Linux: Remove rseq supportFlorian Weimer1-13/+0
2020-07-06Add the __libc_single_threaded variableFlorian Weimer1-0/+5
2020-07-06Linux: Perform rseq registration at C startup and thread creationMathieu Desnoyers1-0/+13
2020-06-25nptl: Don't madvise user provided stackSzabolcs Nagy1-2/+3
2020-06-02nptl: Add pthread_attr_setsigmask_np, pthread_attr_getsigmask_npFlorian Weimer1-8/+17