Home
last modified time | relevance | path

Searched refs:m_owner (Results 1 – 2 of 2) sorted by relevance

/dragonfly/lib/libthread_xu/thread/
H A Dthr_mutex.c174 pmutex->m_owner = NULL; in mutex_init_body()
270 mutex->m_owner = NULL;
314 if (((*mutex)->m_owner != NULL) || in _pthread_mutex_destroy()
354 m->m_owner = curthread; in mutex_trylock_common()
358 } else if (m->m_owner == curthread) { in mutex_trylock_common()
418 m->m_owner = curthread; in mutex_lock_common()
422 } else if (m->m_owner == curthread) { in mutex_lock_common()
440 m->m_owner = curthread; in mutex_lock_common()
669 m->m_owner = NULL; in mutex_unlock_common()
742 if (__predict_false(m->m_owner != curthread)) in _mutex_cv_unlock()
[all …]
H A Dthr_private.h107 struct __pthread_s *m_owner; member