about summary refs log tree commit diff
path: root/src/thread/pthread_mutexattr_setrobust.c
Commit message (Collapse)AuthorAgeFilesLines
* make pthread attribute types structs, even when they just have one fieldRich Felker2013-07-221-2/+2
| | | | | this change is to get the right tags for C++ ABI matching. it should have no other effects.
* implement robust mutexesRich Felker2011-03-171-0/+9
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.