Lines Matching defs:mu
3436 pthread_mutex_t* mu;
3442 pthread_mutex_lock(arg->mu);
3447 pthread_mutex_unlock(arg->mu);
3454 pthread_mutex_t mu;
3455 SignalCondArg args = {&cond, &mu, false};
3457 pthread_mutex_init(&mu, 0);
3458 pthread_mutex_lock(&mu);
3463 int res = pthread_cond_wait(&cond, &mu);
3470 res = pthread_cond_wait(&cond, &mu);
3474 pthread_mutex_unlock(&mu);
3475 pthread_mutex_destroy(&mu);