Sign in
cobalt
/
cobalt
/
fc84fc2a551a0cf60d391fb3e7d8229e6f9a9daf
/
.
/
third_party
/
musl
/
src
/
thread
/
cnd_signal.c
blob: 02cdc6c60a2550104a0ef09c857205c293c80e10 [
file
] [
log
] [
blame
]
#include
<threads.h>
#include
<pthread.h>
int
cnd_signal
(
cnd_t
*
c
)
{
/* This internal function never fails, and always returns zero,
* which matches the value thrd_success is defined with. */
return
__private_cond_signal
((
pthread_cond_t
*)
c
,
1
);
}