about summary refs log tree commit diff
path: root/src/internal/pthread_impl.h
Commit message (Expand)AuthorAgeFilesLines
* 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
* redo cond vars again, use sequence numbersRich Felker2011-09-261-3/+3
* new futex-requeue-based pthread_cond_broadcast implementationRich Felker2011-09-251-3/+6
* fix deadlock in condition wait whenever there are multiple waitersRich Felker2011-09-221-0/+1
* overhaul clone syscall wrappingRich Felker2011-09-181-2/+1
* pthread and synccall cleanup, new __synccall_wait opRich Felker2011-08-121-0/+1
* overhaul rwlocks to address several issuesRich Felker2011-08-031-4/+2
* unify and overhaul timed futex waitsRich Felker2011-08-021-2/+1
* add proper fuxed-based locking for stdioRich Felker2011-07-301-0/+2
* new attempt at making set*id() safe and robustRich Felker2011-07-291-3/+3
* fix race condition in pthread_killRich Felker2011-06-141-0/+1
* fix sigset macro for 64-bit systems (<< was overflowing due to wrong type)Rich Felker2011-06-131-1/+1
* implement uselocale function (minimal)Rich Felker2011-05-301-0/+2
* optimize compound-literal sigset_t's not to contain useless hurd bitsRich Felker2011-05-071-2/+4
* overhaul implementation-internal signal protectionsRich Felker2011-05-071-3/+6
* completely new barrier implementation, addressing major correctness issuesRich Felker2011-05-061-4/+4
* overhaul pthread cancellationRich Felker2011-04-171-1/+3
* use a separate signal from SIGCANCEL for SIGEV_THREAD timersRich Felker2011-04-141-0/+1
* greatly improve SIGEV_THREAD timersRich Felker2011-04-091-0/+1
* move rsyscall out of pthread_create moduleRich Felker2011-04-061-0/+3
* optimize timer creation and possibly protect against some minor racesRich Felker2011-03-301-2/+0
* major improvements to cancellation handlingRich Felker2011-03-291-2/+5
* some preliminaries for adding POSIX timersRich Felker2011-03-291-0/+4
* remove useless field in pthread struct (wasted a good bit of space)Rich Felker2011-03-281-1/+0
* implement robust mutexesRich Felker2011-03-171-0/+5
* reorder mutex struct fields to make room for pointers (upcoming robust mutexes)Rich Felker2011-03-171-1/+3
* unify lock and owner fields of mutex structureRich Felker2011-03-171-1/+0
* optimize pthread termination in the non-detached caseRich Felker2011-03-101-0/+1
* fix and optimize non-default-type mutex behaviorRich Felker2011-03-081-0/+1
* use the selected clock from the condattr for pthread_cond_timedwaitRich Felker2011-03-071-0/+1
* reorganize pthread data structures and move the definitions to alltypes.hRich Felker2011-02-171-0/+19
* finish unifying thread register handling in preparation for portingRich Felker2011-02-151-8/+2
* begin unifying clone/thread management interface in preparation for portingRich Felker2011-02-151-5/+3