summaryrefslogtreecommitdiff
path: root/src/internal/pthread_impl.h
AgeCommit message (Collapse)AuthorFilesLines
2011-03-28remove useless field in pthread struct (wasted a good bit of space)Rich Felker1-1/+0
2011-03-17implement robust mutexesRich Felker1-0/+5
some of this code should be cleaned up, e.g. using macros for some of the bit flags, masks, etc. nonetheless, the code is believed to be working and correct at this point.
2011-03-17reorder mutex struct fields to make room for pointers (upcoming robust mutexes)Rich Felker1-1/+3
the layout has been chosen so that pointer slots 3 and 4 fit between the integer slots on 32-bit archs, and come after the integer slots on 64-bit archs.
2011-03-17unify lock and owner fields of mutex structureRich Felker1-1/+0
this change is necessary to free up one slot in the mutex structure so that we can use doubly-linked lists in the implementation of robust mutexes.
2011-03-10optimize pthread termination in the non-detached caseRich Felker1-0/+1
we can avoid blocking signals by simply using a flag to mark that the thread has exited and prevent it from getting counted in the rsyscall signal-pingpong. this restores the original pthread create/join throughput from before the sigprocmask call was added.
2011-03-08fix and optimize non-default-type mutex behaviorRich Felker1-0/+1
problem 1: mutex type from the attribute was being ignored by pthread_mutex_init, so recursive/errorchecking mutexes were never being used at all. problem 2: ownership of recursive mutexes was not being enforced at unlock time.
2011-03-07use the selected clock from the condattr for pthread_cond_timedwaitRich Felker1-0/+1
2011-02-17reorganize pthread data structures and move the definitions to alltypes.hRich Felker1-0/+19
this allows sys/types.h to provide the pthread types, as required by POSIX. this design also facilitates forcing ABI-compatible sizes in the arch-specific alltypes.h, while eliminating the need for developers changing the internals of the pthread types to poke around with arch-specific headers they may not be able to test.
2011-02-15finish unifying thread register handling in preparation for portingRich Felker1-8/+2
2011-02-15begin unifying clone/thread management interface in preparation for portingRich Felker1-5/+3
2011-02-12initial check-in, version 0.5.0v0.5.0Rich Felker1-0/+68