Searched refs:condp (Results 1 - 2 of 2) sorted by relevance

/openbsd-current/lib/libc/thread/
H A Drthread_cond.c31 pthread_cond_init(pthread_cond_t *condp, const pthread_condattr_t *attr) argument
43 *condp = cond;
50 pthread_cond_destroy(pthread_cond_t *condp) argument
54 cond = *condp;
65 *condp = NULL;
133 pthread_cond_timedwait(pthread_cond_t *condp, pthread_mutex_t *mutexp, argument
139 if (*condp == NULL) {
140 if ((error = pthread_cond_init(condp, NULL)))
144 cond = *condp;
152 pthread_cond_wait(pthread_cond_t *condp, pthread_mutex_ argument
167 pthread_cond_signal(pthread_cond_t *condp) argument
187 pthread_cond_broadcast(pthread_cond_t *condp) argument
[all...]
H A Drthread_sync.c244 pthread_cond_init(pthread_cond_t *condp, const pthread_condattr_t *attr) argument
257 *condp = cond;
264 pthread_cond_destroy(pthread_cond_t *condp) argument
268 assert(condp);
269 cond = *condp;
279 *condp = NULL;
285 pthread_cond_timedwait(pthread_cond_t *condp, pthread_mutex_t *mutexp, argument
299 if (!*condp)
300 if ((error = pthread_cond_init(condp, NULL)))
302 cond = *condp;
442 pthread_cond_wait(pthread_cond_t *condp, pthread_mutex_t *mutexp) argument
580 pthread_cond_signal(pthread_cond_t *condp) argument
628 pthread_cond_broadcast(pthread_cond_t *condp) argument
[all...]

Completed in 73 milliseconds