summaryrefslogtreecommitdiff
path: root/src/thread/pthread_mutex_lock.c
diff options
context:
space:
mode:
authorRich Felker <dalias@aerifal.cx>2011-04-14 14:39:57 -0400
committerRich Felker <dalias@aerifal.cx>2011-04-14 14:39:57 -0400
commitec2e50d0d78fb19c4a0b6f3e1d394408860425b4 (patch)
tree05e58ed47255af3d2ca00a504d3318c1d4fa4f37 /src/thread/pthread_mutex_lock.c
parent016a5dc1925a66c7d1ffc14b862b1342f399cfda (diff)
downloadmusl-ec2e50d0d78fb19c4a0b6f3e1d394408860425b4.tar.gz
cheap trick to further optimize locking normal mutexes
Diffstat (limited to 'src/thread/pthread_mutex_lock.c')
-rw-r--r--src/thread/pthread_mutex_lock.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/thread/pthread_mutex_lock.c b/src/thread/pthread_mutex_lock.c
index 87b19752..99c15bd8 100644
--- a/src/thread/pthread_mutex_lock.c
+++ b/src/thread/pthread_mutex_lock.c
@@ -4,7 +4,7 @@ int pthread_mutex_lock(pthread_mutex_t *m)
{
int r;
- if (m->_m_type == PTHREAD_MUTEX_NORMAL && !a_swap(&m->_m_lock, 1))
+ if (m->_m_type == PTHREAD_MUTEX_NORMAL && !a_swap(&m->_m_lock, EBUSY))
return 0;
while ((r=pthread_mutex_trylock(m)) == EBUSY) {