some of this code should be cleaned up, e.g. using macros for some of the bit flags, masks, etc. nonetheless, the code is believed to be working and correct at this point.
14 lines
354 B
C
14 lines
354 B
C
#include "pthread_impl.h"
|
|
|
|
int pthread_mutex_lock(pthread_mutex_t *m)
|
|
{
|
|
int r;
|
|
while ((r=pthread_mutex_trylock(m)) == EBUSY) {
|
|
if (!(r=m->_m_lock) || (r&0x40000000)) continue;
|
|
if ((m->_m_type&3) == PTHREAD_MUTEX_ERRORCHECK
|
|
&& (r&0x1fffffff) == pthread_self()->tid)
|
|
return EDEADLK;
|
|
__wait(&m->_m_lock, &m->_m_waiters, r, 0);
|
|
}
|
|
return r;
|
|
}
|