about summary refs log tree commit diff
path: root/src/internal/pthread_impl.h
Commit message (Expand)AuthorAgeFilesLines
* 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
* factor cancellation cleanup push/pop out of futex __timedwait functionRich Felker2015-03-021-1/+2
* add C11 thread creation and related thread functionsRich Felker2014-09-071-0/+2
* fix false ownership of stdio FILEs due to tid reuseRich Felker2014-08-231-0/+1
* fix fallback checks for kernels without private futex supportRich Felker2014-08-221-1/+1
* redesign cond var implementation to fix multiple issuesRich Felker2014-08-171-5/+4
* make pointers used in robust list volatileRich Felker2014-08-171-2/+2
* make futex operations use private-futex mode when possibleRich Felker2014-08-151-2/+8
* simplify errno implementationRich Felker2014-06-101-1/+1
* fix multiple bugs in SIGEV_THREAD timersRich Felker2013-08-031-1/+1
* transition to using functions for internal signal blocking/restoringRich Felker2013-04-261-0/+4
* implement pthread_getattr_npRich Felker2013-03-311-0/+2
* remove __SYSCALL_SSLEN arch macro in favor of using public _NSIGRich Felker2013-03-261-3/+3
* replace __wake function with macro that performs direct syscallRich Felker2013-02-011-1/+2
* add support for thread scheduling (POSIX TPS option)Rich Felker2012-11-111-0/+5
* clean up sloppy nested inclusion from pthread_impl.hRich Felker2012-11-081-8/+0
* support for TLS in dynamic-loaded (dlopen) modulesRich Felker2012-10-051-2/+3
* beginnings of full TLS support in shared librariesRich Felker2012-10-041-1/+1
* fix (hopefully) all hard-coded 8's for kernel sigset_t sizeRich Felker2012-08-091-2/+5
* fix several locks that weren't updated right for new futex-based __lockRich Felker2012-07-121-3/+3
* add pthread_attr_setstack interface (and get)Rich Felker2012-06-091-1/+2
* increase default thread stack size to 80kRich Felker2012-06-021-1/+1
* remove cruft from pthread structure (old cancellation stuff)Rich Felker2012-05-251-2/+0
* fix out-of-bounds array access in pthread barriers on 64-bitRich Felker2012-05-211-1/+1
* overhaul SSP support to use a real canaryRich Felker2012-05-031-0/+4
* synchronize cond var destruction with exiting waitsRich Felker2011-10-021-0/+1
* improve pshared barriersRich Felker2011-09-281-1/+1
* process-shared barrier support, based on discussion with bdonlanRich Felker2011-09-271-3/+5
* fix lost signals in cond varsRich Felker2011-09-261-0/+1