mirror of
https://git.musl-libc.org/git/musl
synced 2025-01-24 23:22:04 +03:00
cheap special-case optimization for normal mutexes
cycle-level benchmark on atom cpu showed typical pthread_mutex_lock call dropping from ~120 cycles to ~90 cycles with this change. benefit may vary with compiler options and version, but this optimization is very cheap to make and should always help some.
This commit is contained in:
parent
680630011d
commit
124b4ebc8a
@ -3,6 +3,10 @@
|
||||
int pthread_mutex_lock(pthread_mutex_t *m)
|
||||
{
|
||||
int r;
|
||||
|
||||
if (m->_m_type == PTHREAD_MUTEX_NORMAL && !a_swap(&m->_m_lock, 1))
|
||||
return 0;
|
||||
|
||||
while ((r=pthread_mutex_trylock(m)) == EBUSY) {
|
||||
if (!(r=m->_m_lock) || (r&0x40000000)) continue;
|
||||
if ((m->_m_type&3) == PTHREAD_MUTEX_ERRORCHECK
|
||||
|
Loading…
Reference in New Issue
Block a user