diff options
Diffstat (limited to 'src/thread/pthread_mutex_lock.c')
-rw-r--r-- | src/thread/pthread_mutex_lock.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/thread/pthread_mutex_lock.c b/src/thread/pthread_mutex_lock.c index 87b19752..99c15bd8 100644 --- a/src/thread/pthread_mutex_lock.c +++ b/src/thread/pthread_mutex_lock.c @@ -4,7 +4,7 @@ int pthread_mutex_lock(pthread_mutex_t *m) { 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; while ((r=pthread_mutex_trylock(m)) == EBUSY) { |