Lines Matching defs:mutex
63 static pthread_mutex_t mutex;
73 printf(" -l# 1:lock the mutex before broadcast, 0:don't\n");
122 rc = pthread_mutex_lock(&mutex);
125 rc = pthread_mutex_unlock(&mutex);
152 rc = pthread_mutex_lock(&mutex);
154 rc = pthread_cond_wait(&cond, &mutex);
162 rc = pthread_mutex_unlock(&mutex);
188 printf("Calling pthread_cond_broadcast() with mutex: %s\n\n",
193 init_pi_mutex(&mutex);
218 pthread_mutex_destroy(&mutex);