summaryrefslogtreecommitdiff
path: root/src/threads/cnd_signal.c
blob: 0a00d09513d4c4f6359d8c242b5111fe8b74b7d8 (plain)
1
2
3
4
5
6
7
#include <threads.h>
#include <pthread.h>

int cnd_signal(cnd_t *cond)
{
	return pthread_cond_signal(cond) == 0 ? thrd_success : thrd_error;
}