mirror of
git://git.musl-libc.org/musl
synced 2025-03-06 19:57:37 +00:00
add fast path for normal mutexes back to pthread_mutex_lock
This commit is contained in:
parent
188ebf51b4
commit
b2b95a58b4
@ -2,5 +2,8 @@
|
||||
|
||||
int pthread_mutex_lock(pthread_mutex_t *m)
|
||||
{
|
||||
if (m->_m_type == PTHREAD_MUTEX_NORMAL && !a_cas(&m->_m_lock, 0, EBUSY))
|
||||
return 0;
|
||||
|
||||
return pthread_mutex_timedlock(m, 0);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user