Searched refs:pthread_cond_t (Results 1 – 4 of 4) sorted by relevance
/include/ |
D | pthread.h | 16 typedef struct pthread_cond *pthread_cond_t; typedef 55 int pthread_cond_init(pthread_cond_t *cond, const pthread_condattr_t *attr); 56 int pthread_cond_destroy(pthread_cond_t *cond); 57 int pthread_cond_wait(pthread_cond_t *cond, pthread_mutex_t *mutex); 58 int pthread_cond_timedwait(pthread_cond_t *cond, pthread_mutex_t *mutex, 60 int pthread_cond_signal(pthread_cond_t *cond); 61 int pthread_cond_broadcast(pthread_cond_t *cond);
|
/lib/libc/posix/ |
D | pthread.c | 326 pthread_cond_init(pthread_cond_t *cond, const pthread_condattr_t *attr) in pthread_cond_init() 344 pthread_cond_destroy(pthread_cond_t *cond) in pthread_cond_destroy() 355 pthread_cond_wait(pthread_cond_t *cond, pthread_mutex_t *mutex) in pthread_cond_wait() 393 pthread_cond_timedwait(pthread_cond_t *cond, pthread_mutex_t *mutex, in pthread_cond_timedwait() 440 pthread_cond_signal(pthread_cond_t *cond) in pthread_cond_signal() 459 pthread_cond_broadcast(pthread_cond_t *cond) in pthread_cond_broadcast()
|
/lib/liblwip/src/arch/ |
D | sys_arch.c | 87 pthread_cond_t cond; 105 static u32_t cond_wait(pthread_cond_t * cond, pthread_mutex_t * mutex, 375 cond_wait(pthread_cond_t *cond, pthread_mutex_t *mutex, u32_t timeout) in cond_wait()
|
/tests/ |
D | pthreadtest.c | 16 pthread_cond_t cnd;
|