summaryrefslogtreecommitdiff
path: root/src/internal/pthread_impl.h
AgeCommit message (Expand)AuthorFilesLines
2020-11-20fix regression in pthread_exitRich Felker1-1/+2
2020-10-14move aio implementation details to a proper internal headerRich Felker1-3/+0
2020-10-14remove long-unused struct __timer from pthread_impl.hRich Felker1-5/+0
2020-10-14move __abort_lock to its own file and drop pointless weak_alias trickRich Felker1-0/+2
2020-09-28fix fork of processes with active async io contextsRich Felker1-0/+2
2020-08-27remove redundant pthread struct members repeated for layout purposesRich Felker1-9/+14
2020-08-27deduplicate __pthread_self thread pointer adjustment out of each archRich Felker1-0/+2
2020-08-24deduplicate TP_ADJ logic out of each arch, replace with TP_OFFSETRich Felker1-0/+10
2020-08-24make h_errno thread-localRich Felker1-0/+1
2019-09-29remove remaining traces of __tls_get_newSzabolcs Nagy1-1/+0
2019-02-22add membarrier syscall wrapper, refactor dynamic tls install to use itRich Felker1-1/+1
2019-02-18install dynamic tls synchronously at dlopen, streamline accessRich Felker1-0/+1
2019-02-16rewrite __synccall in terms of global thread listRich Felker1-1/+0
2019-02-15track all live threads in an AS-safe, fully-consistent linked listRich Felker1-4/+8
2019-02-15always block signals for starting new threads, refactor start argsRich Felker1-11/+0
2018-12-18add __timedwait backend workaround for old kernels where futex EINTRsRich Felker1-0/+1
2018-10-12combine arch ABI's DTP_OFFSET into DTV pointersRich Felker1-2/+3
2018-09-18increase default thread stack/guard sizeRich Felker1-2/+2
2018-09-18limit the configurable default stack/guard size for threadsRich Felker1-2/+5
2018-09-18fix deletion of pthread tsd keys that still have non-null values storedRich Felker1-0/+3
2018-09-12move misplaced __fork_handler declarationRich Felker1-1/+0
2018-09-12move additional pthread internal declarations to pthread_impl.h, hideRich Felker1-0/+15
2018-09-12apply hidden visibility to pthread internalsRich Felker1-11/+11
2018-09-12overhaul internally-public declarations using wrapper headersRich Felker1-8/+1
2018-09-12make arch __set_thread_area backends hiddenRich Felker1-1/+1
2018-09-12make arch __clone backends hiddenRich Felker1-1/+1
2018-09-12move declarations of tls setup/access functions to pthread_impl.hRich Felker1-0/+6
2018-09-05remove leftover declarations for removed functions from pthread_impl.hRich Felker1-4/+0
2018-06-26fix missing timeout argument to futex syscall in __futexwaitPatrick Oppenlander1-2/+2
2018-05-09make linking of thread-start with explicit scheduling conditionalRich Felker1-0/+8
2018-05-09improve design of thread-start with explicit scheduling attributesRich Felker1-2/+0
2018-05-07clean up and reduce size of internal pthread structureRich Felker1-7/+9
2018-05-05improve joinable/detached thread state handlingRich Felker1-3/+9
2018-05-05improve pthread_exit synchronization with functions targeting tidRich Felker1-1/+0
2018-05-02use a dedicated futex object for pthread_join instead of tid fieldRich Felker1-0/+1
2018-02-05document pthread structure ABI constraints in commentsRich Felker1-0/+7
2018-02-03store pthread stack guard sizes for pthread_getattr_npWilliam Pitcock1-0/+1
2018-01-09revise the definition of multiple basic locks in the codeJens Gustedt1-2/+2
2018-01-09new lock algorithm with state and congestion count in one atomic intJens Gustedt1-0/+6
2017-07-04unify the use of FUTEX_PRIVATEJens Gustedt1-1/+1
2017-01-13fix crashes in x32 __tls_get_addrrofl0r1-0/+4
2016-12-06remove largish unused field from pthread structureRich Felker1-1/+0
2016-11-08fix build regression on archs with variable page sizeRich Felker1-1/+1
2015-06-25fix local-dynamic model TLS on mips and powerpcRich Felker1-0/+4
2015-05-06fix stack protector crashes on x32 & powerpc due to misplaced TLS canaryRich Felker1-1/+6
2015-04-18make dlerror state and message thread-local and dynamically-allocatedRich Felker1-0/+2
2015-04-18add missing 'void' in prototypes of internal pthread functionsAlexander Monakov1-6/+6
2015-04-10redesign and simplify vmlock systemRich Felker1-0/+4
2015-03-11copy the dtv pointer to the end of the pthread struct for TLS_ABOVE_TP archsSzabolcs Nagy1-0/+1
2015-03-03make all objects used with atomic operations volatileRich Felker1-15/+15