提交 ec2e50d0 编写于 作者: R Rich Felker

cheap trick to further optimize locking normal mutexes

上级 016a5dc1
...@@ -4,7 +4,7 @@ int pthread_mutex_lock(pthread_mutex_t *m) ...@@ -4,7 +4,7 @@ int pthread_mutex_lock(pthread_mutex_t *m)
{ {
int r; int r;
if (m->_m_type == PTHREAD_MUTEX_NORMAL && !a_swap(&m->_m_lock, 1)) if (m->_m_type == PTHREAD_MUTEX_NORMAL && !a_swap(&m->_m_lock, EBUSY))
return 0; return 0;
while ((r=pthread_mutex_trylock(m)) == EBUSY) { while ((r=pthread_mutex_trylock(m)) == EBUSY) {
......
...@@ -7,7 +7,7 @@ int pthread_mutex_trylock(pthread_mutex_t *m) ...@@ -7,7 +7,7 @@ int pthread_mutex_trylock(pthread_mutex_t *m)
pthread_t self; pthread_t self;
if (m->_m_type == PTHREAD_MUTEX_NORMAL) if (m->_m_type == PTHREAD_MUTEX_NORMAL)
return -a_swap(&m->_m_lock, 1) & EBUSY; return a_swap(&m->_m_lock, EBUSY);
self = pthread_self(); self = pthread_self();
tid = self->tid | 0x80000000; tid = self->tid | 0x80000000;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册