提交 31e06075 编写于 作者: R Rich Felker

simplify and optimize pthread_mutex_trylock

上级 e5dd1831
...@@ -2,24 +2,23 @@ ...@@ -2,24 +2,23 @@
int pthread_mutex_trylock(pthread_mutex_t *m) int pthread_mutex_trylock(pthread_mutex_t *m)
{ {
pthread_t self; int tid;
if (m->_m_type != PTHREAD_MUTEX_NORMAL) {
self = pthread_self(); if (m->_m_type == PTHREAD_MUTEX_NORMAL)
if (m->_m_type == PTHREAD_MUTEX_RECURSIVE return -a_xchg(&m->_m_lock, 1) & EBUSY;
&& m->_m_owner == self->tid) {
if ((unsigned)m->_m_count >= INT_MAX) return EAGAIN;
m->_m_count++;
return 0;
}
}
if (a_xchg(&m->_m_lock, 1)) tid = pthread_self()->tid;
if (m->_m_type == PTHREAD_MUTEX_ERRORCHECK
&& m->_m_owner == self->tid) return EDEADLK; if (m->_m_owner == tid) {
else return EBUSY; if (m->_m_type != PTHREAD_MUTEX_RECURSIVE)
if (m->_m_type != PTHREAD_MUTEX_NORMAL) { return EDEADLK;
m->_m_owner = self->tid; if ((unsigned)m->_m_count >= INT_MAX) return EAGAIN;
m->_m_count = 1; m->_m_count++;
return 0;
} }
if (a_xchg(&m->_m_lock, 1)) return EBUSY;
m->_m_owner = tid;
m->_m_count = 1;
return 0; return 0;
} }
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册