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