about summary refs log tree commit diff
path: root/src/internal/pthread_impl.h
Commit message (Expand)AuthorAgeFilesLines
* fix regression in pthread_exitRich Felker2020-11-201-1/+2
* move aio implementation details to a proper internal headerRich Felker2020-10-141-3/+0
* remove long-unused struct __timer from pthread_impl.hRich Felker2020-10-141-5/+0
* move __abort_lock to its own file and drop pointless weak_alias trickRich Felker2020-10-141-0/+2
* fix fork of processes with active async io contextsRich Felker2020-09-281-0/+2
* remove redundant pthread struct members repeated for layout purposesRich Felker2020-08-271-9/+14
* deduplicate __pthread_self thread pointer adjustment out of each archRich Felker2020-08-271-0/+2
* deduplicate TP_ADJ logic out of each arch, replace with TP_OFFSETRich Felker2020-08-241-0/+10
* make h_errno thread-localRich Felker2020-08-241-0/+1
* remove remaining traces of __tls_get_newSzabolcs Nagy2019-09-291-1/+0
* add membarrier syscall wrapper, refactor dynamic tls install to use itRich Felker2019-02-221-1/+1
* install dynamic tls synchronously at dlopen, streamline accessRich Felker2019-02-181-0/+1
* rewrite __synccall in terms of global thread listRich Felker2019-02-161-1/+0
* track all live threads in an AS-safe, fully-consistent linked listRich Felker2019-02-151-4/+8
* always block signals for starting new threads, refactor start argsRich Felker2019-02-151-11/+0
* add __timedwait backend workaround for old kernels where futex EINTRsRich Felker2018-12-181-0/+1
* combine arch ABI's DTP_OFFSET into DTV pointersRich Felker2018-10-121-2/+3
* increase default thread stack/guard sizeRich Felker2018-09-181-2/+2
* limit the configurable default stack/guard size for threadsRich Felker2018-09-181-2/+5
* fix deletion of pthread tsd keys that still have non-null values storedRich Felker2018-09-181-0/+3
* move misplaced __fork_handler declarationRich Felker2018-09-121-1/+0
* move additional pthread internal declarations to pthread_impl.h, hideRich Felker2018-09-121-0/+15
* apply hidden visibility to pthread internalsRich Felker2018-09-121-11/+11
* overhaul internally-public declarations using wrapper headersRich Felker2018-09-121-8/+1
* make arch __set_thread_area backends hiddenRich Felker2018-09-121-1/+1
* make arch __clone backends hiddenRich Felker2018-09-121-1/+1
* move declarations of tls setup/access functions to pthread_impl.hRich Felker2018-09-121-0/+6
* remove leftover declarations for removed functions from pthread_impl.hRich Felker2018-09-051-4/+0
* fix missing timeout argument to futex syscall in __futexwaitPatrick Oppenlander2018-06-261-2/+2
* make linking of thread-start with explicit scheduling conditionalRich Felker2018-05-091-0/+8
* improve design of thread-start with explicit scheduling attributesRich Felker2018-05-091-2/+0
* clean up and reduce size of internal pthread structureRich Felker2018-05-071-7/+9
* improve joinable/detached thread state handlingRich Felker2018-05-051-3/+9
* improve pthread_exit synchronization with functions targeting tidRich Felker2018-05-051-1/+0
* use a dedicated futex object for pthread_join instead of tid fieldRich Felker2018-05-021-0/+1
* document pthread structure ABI constraints in commentsRich Felker2018-02-051-0/+7
* store pthread stack guard sizes for pthread_getattr_npWilliam Pitcock2018-02-031-0/+1
* revise the definition of multiple basic locks in the codeJens Gustedt2018-01-091-2/+2
* new lock algorithm with state and congestion count in one atomic intJens Gustedt2018-01-091-0/+6
* unify the use of FUTEX_PRIVATEJens Gustedt2017-07-041-1/+1
* fix crashes in x32 __tls_get_addrrofl0r2017-01-131-0/+4
* remove largish unused field from pthread structureRich Felker2016-12-061-1/+0
* fix build regression on archs with variable page sizeRich Felker2016-11-081-1/+1
* fix local-dynamic model TLS on mips and powerpcRich Felker2015-06-251-0/+4
* fix stack protector crashes on x32 & powerpc due to misplaced TLS canaryRich Felker2015-05-061-1/+6
* make dlerror state and message thread-local and dynamically-allocatedRich Felker2015-04-181-0/+2
* add missing 'void' in prototypes of internal pthread functionsAlexander Monakov2015-04-181-6/+6
* redesign and simplify vmlock systemRich Felker2015-04-101-0/+4
* copy the dtv pointer to the end of the pthread struct for TLS_ABOVE_TP archsSzabolcs Nagy2015-03-111-0/+1
* make all objects used with atomic operations volatileRich Felker2015-03-031-15/+15