blob: 8165dae162e03697688e7b2f8a41c2fa169bc11b (
plain) (
tree)
|
|
#include <threads.h>
#include <pthread.h>
int __private_cond_signal(pthread_cond_t *, int);
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);
}
|