mirror of
https://github.com/fluencelabs/musl
synced 2025-06-13 15:01:39 +00:00
avoid function call to pthread_self in mutex unlock
if the mutex was previously locked, we can assume pthread_self was already called at the time of locking, and thus that the thread pointer is initialized.
This commit is contained in:
@ -3,7 +3,7 @@
|
|||||||
int pthread_mutex_unlock(pthread_mutex_t *m)
|
int pthread_mutex_unlock(pthread_mutex_t *m)
|
||||||
{
|
{
|
||||||
if (m->_m_type != PTHREAD_MUTEX_NORMAL) {
|
if (m->_m_type != PTHREAD_MUTEX_NORMAL) {
|
||||||
if (m->_m_lock != pthread_self()->tid)
|
if (!m->_m_lock || m->_m_lock != __pthread_self()->tid)
|
||||||
return EPERM;
|
return EPERM;
|
||||||
if (m->_m_type == PTHREAD_MUTEX_RECURSIVE && --m->_m_count)
|
if (m->_m_type == PTHREAD_MUTEX_RECURSIVE && --m->_m_count)
|
||||||
return 0;
|
return 0;
|
||||||
|
Reference in New Issue
Block a user