Home
last modified time | relevance | path

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

/trueos/lib/libkse/thread/
HDthr_cond.c128 pcond->c_mutex = NULL; in _pthread_cond_init()
225 if ((mutex == NULL) || (((*cond)->c_mutex != NULL) && in _pthread_cond_wait()
226 ((*cond)->c_mutex != *mutex))) { in _pthread_cond_wait()
255 (*cond)->c_mutex = *mutex; in _pthread_cond_wait()
329 (*cond)->c_mutex = NULL; in _pthread_cond_wait()
423 if ((mutex == NULL) || (((*cond)->c_mutex != NULL) && in _pthread_cond_timedwait()
424 ((*cond)->c_mutex != *mutex))) { in _pthread_cond_timedwait()
449 (*cond)->c_mutex = *mutex; in _pthread_cond_timedwait()
529 (*cond)->c_mutex = NULL; in _pthread_cond_timedwait()
624 (*cond)->c_mutex = NULL; in _pthread_cond_signal()
[all …]
HDthr_private.h374 struct pthread_mutex *c_mutex; member