fix and optimize non-default-type mutex behavior

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.
This commit is contained in:
Rich Felker
2011-03-08 03:41:05 -05:00
parent 1d6b1f1592
commit 4820f9268d
4 changed files with 19 additions and 25 deletions

View File

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