aboutsummaryrefslogtreecommitdiff
path: root/src/thread/cnd_signal.c
blob: 7190d199f0c4dd0601739f122c8cdb0548a8b189 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#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);
}


#ifdef TEST
int
main(void) {
	return 0;
}
#endif