summaryrefslogtreecommitdiff
path: root/src/thread/pthread_mutex_trylock.c
blob: 2dad7bbf19a9752368d894f35f59a328bfb1d34c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#include "pthread_impl.h"

int pthread_mutex_trylock(pthread_mutex_t *m)
{
	int tid;

	if (m->_m_type == PTHREAD_MUTEX_NORMAL)
		return -a_xchg(&m->_m_lock, 1) & EBUSY;

	tid = pthread_self()->tid;

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

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