summaryrefslogtreecommitdiff
path: root/src/thread/pthread_mutex_unlock.c
blob: 3733788d8ebee7a375d54db6959aef1f8702a623 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include "pthread_impl.h"

int pthread_mutex_unlock(pthread_mutex_t *m)
{
	if (m->_m_type != PTHREAD_MUTEX_NORMAL) {
		if (!m->_m_lock || m->_m_lock != __pthread_self()->tid)
		 	return EPERM;
		if (m->_m_type == PTHREAD_MUTEX_RECURSIVE && --m->_m_count)
			return 0;
	}

	m->_m_lock = 0;
	if (m->_m_waiters) __wake(&m->_m_lock, 1, 0);
	return 0;
}