about summary refs log tree commit diff
path: root/src/thread/pthread_mutex_trylock.c
diff options
context:
space:
mode:
authorRich Felker <dalias@aerifal.cx>2011-03-08 03:41:05 -0500
committerRich Felker <dalias@aerifal.cx>2011-03-08 03:41:05 -0500
commit4820f9268d3dc1f2aac923de0a591ffd5d54ea89 (patch)
treeb0b247a81d43cb7a23a5eb0dc33ea1c83c9130d4 /src/thread/pthread_mutex_trylock.c
parent1d6b1f15929ff19f4dce4f83947e14f7c3fc3c19 (diff)
downloadmusl-4820f9268d3dc1f2aac923de0a591ffd5d54ea89.tar.gz
musl-4820f9268d3dc1f2aac923de0a591ffd5d54ea89.tar.xz
musl-4820f9268d3dc1f2aac923de0a591ffd5d54ea89.zip
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.
Diffstat (limited to 'src/thread/pthread_mutex_trylock.c')
-rw-r--r--src/thread/pthread_mutex_trylock.c27
1 files changed, 12 insertions, 15 deletions
diff --git a/src/thread/pthread_mutex_trylock.c b/src/thread/pthread_mutex_trylock.c
index 29268fdb..7ff4f703 100644
--- a/src/thread/pthread_mutex_trylock.c
+++ b/src/thread/pthread_mutex_trylock.c
@@ -2,27 +2,24 @@
 
 int pthread_mutex_trylock(pthread_mutex_t *m)
 {
-	if (m->_m_type == PTHREAD_MUTEX_RECURSIVE) {
-		pthread_t self = pthread_self();
-		if (m->_m_owner == self->tid) {
-			if ((unsigned)m->_m_lock >= INT_MAX) return EAGAIN;
-			a_inc(&m->_m_lock);
+	pthread_t self;
+	if (m->_m_type != PTHREAD_MUTEX_NORMAL) {
+		self = pthread_self();
+		if (m->_m_type == PTHREAD_MUTEX_RECURSIVE
+		 && m->_m_owner == self->tid) {
+			if ((unsigned)m->_m_count >= INT_MAX) return EAGAIN;
+			m->_m_count++;
 			return 0;
 		}
-		if (a_fetch_add(&m->_m_lock, 1)) {
-			if (a_fetch_add(&m->_m_lock, -1)==1 && m->_m_waiters)
-				__wake(&m->_m_lock, 1, 0);
-			return EBUSY;
-		}
-		m->_m_owner = self->tid;
-		return 0;
 	}
 
 	if (a_xchg(&m->_m_lock, 1))
 		if (m->_m_type == PTHREAD_MUTEX_ERRORCHECK
-		 && m->_m_owner == pthread_self()->tid) return EDEADLK;
+		 && m->_m_owner == self->tid) return EDEADLK;
 		else return EBUSY;
-	if (m->_m_type == PTHREAD_MUTEX_ERRORCHECK)
-		m->_m_owner = pthread_self()->tid;
+	if (m->_m_type != PTHREAD_MUTEX_NORMAL) {
+		m->_m_owner = self->tid;
+		m->_m_count = 1;
+	}
 	return 0;
 }