From 97a7512b6819014d15c679c8998caa0006d13c29 Mon Sep 17 00:00:00 2001 From: Rich Felker Date: Mon, 25 Aug 2014 20:16:26 -0400 Subject: spin before waiting on futex in mutex and rwlock lock operations --- src/thread/pthread_mutex_timedlock.c | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'src/thread/pthread_mutex_timedlock.c') diff --git a/src/thread/pthread_mutex_timedlock.c b/src/thread/pthread_mutex_timedlock.c index 2a959d25..116a8b7b 100644 --- a/src/thread/pthread_mutex_timedlock.c +++ b/src/thread/pthread_mutex_timedlock.c @@ -8,6 +8,12 @@ int pthread_mutex_timedlock(pthread_mutex_t *restrict m, const struct timespec * int r, t, priv = (m->_m_type & 128) ^ 128; + r = pthread_mutex_trylock(m); + if (r != EBUSY) return r; + + int spins = 100; + while (spins-- && m->_m_lock) a_spin(); + while ((r=pthread_mutex_trylock(m)) == EBUSY) { if (!(r=m->_m_lock) || ((r&0x40000000) && (m->_m_type&4))) continue; -- cgit v1.2.1