Explorar o código

revert mutex "optimization" that turned out to be worse

Rich Felker %!s(int64=14) %!d(string=hai) anos
pai
achega
8524d6536c
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      src/thread/pthread_mutex_trylock.c

+ 1 - 1
src/thread/pthread_mutex_trylock.c

@@ -7,7 +7,7 @@ int pthread_mutex_trylock(pthread_mutex_t *m)
 	pthread_t self;
 
 	if (m->_m_type == PTHREAD_MUTEX_NORMAL)
-		return (m->_m_lock || a_swap(&m->_m_lock, 1)) ? EBUSY : 0;
+		return -a_swap(&m->_m_lock, 1) & EBUSY;
 
 	self = pthread_self();
 	tid = self->tid | 0x80000000;