From 4820f9268d3dc1f2aac923de0a591ffd5d54ea89 Mon Sep 17 00:00:00 2001 From: Rich Felker Date: Tue, 8 Mar 2011 03:41:05 -0500 Subject: 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. --- src/thread/pthread_mutex_init.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'src/thread/pthread_mutex_init.c') diff --git a/src/thread/pthread_mutex_init.c b/src/thread/pthread_mutex_init.c index d453543d..6e23df13 100644 --- a/src/thread/pthread_mutex_init.c +++ b/src/thread/pthread_mutex_init.c @@ -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; } -- cgit v1.2.1