Searched refs:_m_type (Results 1 - 13 of 13) sorted by relevance

/seL4-refos-master/libs/libmuslc/src/thread/
H A Dpthread_mutex_consistent.c5 if (!(m->_m_type & 8)) return EINVAL;
8 m->_m_type &= ~8U;
H A Dmtx_init.c7 ._m_type = ((type&mtx_recursive) ? PTHREAD_MUTEX_RECURSIVE : PTHREAD_MUTEX_NORMAL),
H A Dpthread_mutex_init.c6 if (a) m->_m_type = a->__attr;
H A Dmtx_lock.c6 if (m->_m_type == PTHREAD_MUTEX_NORMAL && !a_cas(&m->_m_lock, 0, EBUSY))
H A Dpthread_mutex_lock.c7 if ((m->_m_type&15) == PTHREAD_MUTEX_NORMAL
H A Dpthread_mutex_timedlock.c5 if ((m->_m_type&15) == PTHREAD_MUTEX_NORMAL
9 int r, t, priv = (m->_m_type & 128) ^ 128;
18 if (!(r=m->_m_lock) || ((r&0x40000000) && (m->_m_type&4)))
20 if ((m->_m_type&3) == PTHREAD_MUTEX_ERRORCHECK
H A Dmtx_trylock.c8 if (m->_m_type == PTHREAD_MUTEX_NORMAL)
H A Dpthread_mutex_trylock.c6 int type = m->_m_type & 15;
19 if (m->_m_type & 128) {
44 m->_m_type |= 8;
53 if ((m->_m_type&15) == PTHREAD_MUTEX_NORMAL)
H A Dpthread_mutex_unlock.c8 int type = m->_m_type & 15;
9 int priv = (m->_m_type & 128) ^ 128;
H A Dpthread_cond_timedwait.c73 if ((m->_m_type&15) && (m->_m_lock&INT_MAX) != __pthread_self()->tid)
159 unlock_requeue(&node.prev->barrier, &m->_m_lock, m->_m_type & 128);
H A Dpthread_create.c79 int priv = (m->_m_type & 128) ^ 128;
/seL4-refos-master/libs/libmuslc/src/internal/
H A Dpthread_impl.h67 #define _m_type __u.__i[0] macro
/seL4-refos-master/libs/libmuslc/ldso/
H A Ddynlink.c129 static pthread_mutex_t init_fini_lock = { ._m_type = PTHREAD_MUTEX_RECURSIVE };

Completed in 44 milliseconds