xref: /aosp_15_r20/external/musl/src/thread/pthread_cond_wait.c (revision c9945492fdd68bbe62686c5b452b4dc1be3f8453)
1*c9945492SAndroid Build Coastguard Worker #include "pthread_impl.h"
2*c9945492SAndroid Build Coastguard Worker 
pthread_cond_wait(pthread_cond_t * restrict c,pthread_mutex_t * restrict m)3*c9945492SAndroid Build Coastguard Worker int pthread_cond_wait(pthread_cond_t *restrict c, pthread_mutex_t *restrict m)
4*c9945492SAndroid Build Coastguard Worker {
5*c9945492SAndroid Build Coastguard Worker 	return pthread_cond_timedwait(c, m, 0);
6*c9945492SAndroid Build Coastguard Worker }
7