add fast path for normal mutexes back to pthread_mutex_lock
This commit is contained in:
parent
188ebf51b4
commit
b2b95a58b4
1 changed files with 3 additions and 0 deletions
|
|
@ -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…
Add table
Add a link
Reference in a new issue