Searched defs:pthread_cond_t (Results 1 - 1 of 1) sorted by relevance
/bionic/libc/include/ |
H A D | pthread.h | 70 } pthread_cond_t; typedef in typeref:struct:__anon57 162 int pthread_cond_broadcast(pthread_cond_t*) __nonnull((1)); 163 int pthread_cond_destroy(pthread_cond_t*) __nonnull((1)); 164 int pthread_cond_init(pthread_cond_t*, const pthread_condattr_t*) __nonnull((1)); 165 int pthread_cond_signal(pthread_cond_t*) __nonnull((1)); 166 int pthread_cond_timedwait(pthread_cond_t*, pthread_mutex_t*, const struct timespec*) __nonnull((1, 2, 3)); 167 int pthread_cond_wait(pthread_cond_t*, pthread_mutex_t*) __nonnull((1, 2)); 286 int pthread_cond_timedwait_monotonic_np(pthread_cond_t*, pthread_mutex_t*, const struct timespec*); 287 int pthread_cond_timedwait_monotonic(pthread_cond_t*, pthread_mutex_t*, const struct timespec*); 289 int pthread_cond_timedwait_relative_np(pthread_cond_t*, pthread_mutex_ [all...] |
Completed in 5 milliseconds