summaryrefslogblamecommitdiff
path: root/src/thread/pthread_mutex_trylock.c
blob: 6fc604fe1e731617e2510e8ff69989bb22dce559 (plain) (tree)
1
2
3
4
5
6
7
8
9



                                             


                                               
                                                                          
 

                                  
                                                                          


                                                                    
         
 
                                                                

                          

                 
#include "pthread_impl.h"

int pthread_mutex_trylock(pthread_mutex_t *m)
{
	int tid;

	if (m->_m_type == PTHREAD_MUTEX_NORMAL)
		return (m->_m_lock || a_swap(&m->_m_lock, 1)) ? EBUSY : 0;

	tid = pthread_self()->tid;

	if (m->_m_owner == tid && m->_m_type == PTHREAD_MUTEX_RECURSIVE) {
		if ((unsigned)m->_m_count >= INT_MAX) return EAGAIN;
		m->_m_count++;
		return 0;
	}

	if (m->_m_owner || a_xchg(&m->_m_lock, 1)) return EBUSY;
	m->_m_owner = tid;
	m->_m_count = 1;
	return 0;
}