Lines Matching refs:mutex
25 pthread_mutex_t mutex; member
42 pthread_mutex_init(&foo.mutex, NULL); in test_thread()
53 pthread_mutex_lock(&foo.mutex); in test_thread()
55 status = pthread_cond_timedwait(&foo.cond, &foo.mutex, &time); in test_thread()
57 pthread_mutex_unlock(&foo.mutex); in test_thread()
60 pthread_mutex_lock(&main_event.mutex); in test_thread()
63 pthread_mutex_unlock(&main_event.mutex); in test_thread()
76 pthread_mutex_init(&main_event.mutex, NULL); in libc_ex7()
93 pthread_mutex_lock(&main_event.mutex); in libc_ex7()
95 pthread_cond_wait(&main_event.cond, &main_event.mutex); in libc_ex7()
98 pthread_mutex_unlock(&main_event.mutex); in libc_ex7()