implement robust mutexes

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.
This commit is contained in:
Rich Felker
2011-03-17 20:41:37 -04:00
parent 18c7ea8055
commit 047e434ef5
10 changed files with 84 additions and 10 deletions

View File

@ -3,6 +3,6 @@
int pthread_mutex_init(pthread_mutex_t *m, const pthread_mutexattr_t *a)
{
memset(m, 0, sizeof *m);
if (a) m->_m_type = *a & 3;
if (a) m->_m_type = *a & 7;
return 0;
}