summaryrefslogtreecommitdiff
path: root/src/internal/pthread_impl.h
AgeCommit message (Expand)AuthorLines
2019-09-29remove remaining traces of __tls_get_newSzabolcs Nagy-1/+0
2019-02-22add membarrier syscall wrapper, refactor dynamic tls install to use itRich Felker-1/+1
2019-02-18install dynamic tls synchronously at dlopen, streamline accessRich Felker-0/+1
2019-02-16rewrite __synccall in terms of global thread listRich Felker-1/+0
2019-02-15track all live threads in an AS-safe, fully-consistent linked listRich Felker-4/+8
2019-02-15always block signals for starting new threads, refactor start argsRich Felker-11/+0
2018-12-18add __timedwait backend workaround for old kernels where futex EINTRsRich Felker-0/+1
2018-10-12combine arch ABI's DTP_OFFSET into DTV pointersRich Felker-2/+3
2018-09-18increase default thread stack/guard sizeRich Felker-2/+2
2018-09-18limit the configurable default stack/guard size for threadsRich Felker-2/+5
2018-09-18fix deletion of pthread tsd keys that still have non-null values storedRich Felker-0/+3
2018-09-12move misplaced __fork_handler declarationRich Felker-1/+0
2018-09-12move additional pthread internal declarations to pthread_impl.h, hideRich Felker-0/+15
2018-09-12apply hidden visibility to pthread internalsRich Felker-11/+11
2018-09-12overhaul internally-public declarations using wrapper headersRich Felker-8/+1
2018-09-12make arch __set_thread_area backends hiddenRich Felker-1/+1
2018-09-12make arch __clone backends hiddenRich Felker-1/+1
2018-09-12move declarations of tls setup/access functions to pthread_impl.hRich Felker-0/+6
2018-09-05remove leftover declarations for removed functions from pthread_impl.hRich Felker-4/+0
2018-06-26fix missing timeout argument to futex syscall in __futexwaitPatrick Oppenlander-2/+2
2018-05-09make linking of thread-start with explicit scheduling conditionalRich Felker-0/+8
2018-05-09improve design of thread-start with explicit scheduling attributesRich Felker-2/+0
2018-05-07clean up and reduce size of internal pthread structureRich Felker-7/+9
2018-05-05improve joinable/detached thread state handlingRich Felker-3/+9
2018-05-05improve pthread_exit synchronization with functions targeting tidRich Felker-1/+0
2018-05-02use a dedicated futex object for pthread_join instead of tid fieldRich Felker-0/+1
2018-02-05document pthread structure ABI constraints in commentsRich Felker-0/+7
2018-02-03store pthread stack guard sizes for pthread_getattr_npWilliam Pitcock-0/+1
2018-01-09revise the definition of multiple basic locks in the codeJens Gustedt-2/+2
2018-01-09new lock algorithm with state and congestion count in one atomic intJens Gustedt-0/+6
2017-07-04unify the use of FUTEX_PRIVATEJens Gustedt-1/+1
2017-01-13fix crashes in x32 __tls_get_addrrofl0r-0/+4
2016-12-06remove largish unused field from pthread structureRich Felker-1/+0
2016-11-08fix build regression on archs with variable page sizeRich Felker-1/+1
2015-06-25fix local-dynamic model TLS on mips and powerpcRich Felker-0/+4
2015-05-06fix stack protector crashes on x32 & powerpc due to misplaced TLS canaryRich Felker-1/+6
2015-04-18make dlerror state and message thread-local and dynamically-allocatedRich Felker-0/+2
2015-04-18add missing 'void' in prototypes of internal pthread functionsAlexander Monakov-6/+6
2015-04-10redesign and simplify vmlock systemRich Felker-0/+4
2015-03-11copy the dtv pointer to the end of the pthread struct for TLS_ABOVE_TP archsSzabolcs Nagy-0/+1
2015-03-03make all objects used with atomic operations volatileRich Felker-15/+15
2015-03-02factor cancellation cleanup push/pop out of futex __timedwait functionRich Felker-1/+2
2014-09-07add C11 thread creation and related thread functionsRich Felker-0/+2
2014-08-23fix false ownership of stdio FILEs due to tid reuseRich Felker-0/+1
2014-08-22fix fallback checks for kernels without private futex supportRich Felker-1/+1
2014-08-17redesign cond var implementation to fix multiple issuesRich Felker-5/+4
2014-08-17make pointers used in robust list volatileRich Felker-2/+2
2014-08-15make futex operations use private-futex mode when possibleRich Felker-2/+8
2014-06-10simplify errno implementationRich Felker-1/+1
2013-08-03fix multiple bugs in SIGEV_THREAD timersRich Felker-1/+1