Sign in
mojo
/
mojo
/
HEAD
/
.
/
fusl
/
src
/
thread
/
pthread_cond_wait.c
blob: 85149c5690d0d91e9347b528bcaf1c8490932ae5 [
file
] [
log
] [
blame
]
#include
"pthread_impl.h"
int
pthread_cond_wait
(
pthread_cond_t
*
restrict c
,
pthread_mutex_t
*
restrict m
)
{
return
pthread_cond_timedwait
(
c
,
m
,
0
);
}