Searched defs:pthread_cond_t (Results 1 - 1 of 1) sorted by relevance

/bionic/libc/include/
H A Dpthread.h75 } pthread_cond_t; typedef in typeref:struct:__anon48
99 pthread_cond_t __unused_cond;
170 int pthread_cond_broadcast(pthread_cond_t*) __nonnull((1));
171 int pthread_cond_destroy(pthread_cond_t*) __nonnull((1));
172 int pthread_cond_init(pthread_cond_t*, const pthread_condattr_t*) __nonnull((1));
173 int pthread_cond_signal(pthread_cond_t*) __nonnull((1));
174 int pthread_cond_timedwait(pthread_cond_t*, pthread_mutex_t*, const struct timespec*) __nonnull((1, 2, 3));
175 int pthread_cond_wait(pthread_cond_t*, pthread_mutex_t*) __nonnull((1, 2));
273 int pthread_cond_timedwait_monotonic_np(pthread_cond_t*, pthread_mutex_t*, const struct timespec*);
274 int pthread_cond_timedwait_monotonic(pthread_cond_t*, pthread_mutex_
[all...]

Completed in 36 milliseconds