Lines Matching refs:cnd
16 pthread_cond_t cnd;
50 status = pthread_cond_wait(&cnd, NULL);
52 status = pthread_cond_signal(&cnd);
119 status = pthread_cond_init(&cnd, NULL);
121 status = pthread_cond_signal(&cnd);
123 status = pthread_cond_wait(&cnd, NULL);
125 status = pthread_cond_destroy(&cnd);
130 status = pthread_cond_init(&cnd, NULL);
133 status = pthread_cond_signal(&cnd);
135 status = pthread_cond_wait(&cnd, NULL);
138 status = pthread_cond_destroy(&cnd);