summaryrefslogtreecommitdiff
path: root/src/internal/pthread_impl.h
AgeCommit message (Expand)AuthorLines
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
2013-04-26transition to using functions for internal signal blocking/restoringRich Felker-0/+4
2013-03-31implement pthread_getattr_npRich Felker-0/+2
2013-03-26remove __SYSCALL_SSLEN arch macro in favor of using public _NSIGRich Felker-3/+3
2013-02-01replace __wake function with macro that performs direct syscallRich Felker-1/+2
2012-11-11add support for thread scheduling (POSIX TPS option)Rich Felker-0/+5
2012-11-08clean up sloppy nested inclusion from pthread_impl.hRich Felker-8/+0
2012-10-05support for TLS in dynamic-loaded (dlopen) modulesRich Felker-2/+3
2012-10-04beginnings of full TLS support in shared librariesRich Felker-1/+1
2012-08-09fix (hopefully) all hard-coded 8's for kernel sigset_t sizeRich Felker-2/+5
2012-07-12fix several locks that weren't updated right for new futex-based __lockRich Felker-3/+3
2012-06-09add pthread_attr_setstack interface (and get)Rich Felker-1/+2
2012-06-02increase default thread stack size to 80kRich Felker-1/+1
2012-05-25remove cruft from pthread structure (old cancellation stuff)Rich Felker-2/+0
2012-05-21fix out-of-bounds array access in pthread barriers on 64-bitRich Felker-1/+1
2012-05-03overhaul SSP support to use a real canaryRich Felker-0/+4
2011-10-02synchronize cond var destruction with exiting waitsRich Felker-0/+1
2011-09-28improve pshared barriersRich Felker-1/+1
2011-09-27process-shared barrier support, based on discussion with bdonlanRich Felker-3/+5
2011-09-26fix lost signals in cond varsRich Felker-0/+1
2011-09-26redo cond vars again, use sequence numbersRich Felker-3/+3
2011-09-25new futex-requeue-based pthread_cond_broadcast implementationRich Felker-3/+6
2011-09-22fix deadlock in condition wait whenever there are multiple waitersRich Felker-0/+1
2011-09-18overhaul clone syscall wrappingRich Felker-2/+1
2011-08-12pthread and synccall cleanup, new __synccall_wait opRich Felker-0/+1
2011-08-03overhaul rwlocks to address several issuesRich Felker-4/+2
2011-08-02unify and overhaul timed futex waitsRich Felker-2/+1
2011-07-30add proper fuxed-based locking for stdioRich Felker-0/+2
2011-07-29new attempt at making set*id() safe and robustRich Felker-3/+3
2011-06-14fix race condition in pthread_killRich Felker-0/+1
2011-06-13fix sigset macro for 64-bit systems (<< was overflowing due to wrong type)Rich Felker-1/+1
2011-05-30implement uselocale function (minimal)Rich Felker-0/+2
2011-05-07optimize compound-literal sigset_t's not to contain useless hurd bitsRich Felker-2/+4
2011-05-07overhaul implementation-internal signal protectionsRich Felker-3/+6
2011-05-06completely new barrier implementation, addressing major correctness issuesRich Felker-4/+4