summaryrefslogtreecommitdiff
path: root/src/thread/pthread_cond_signal.c
blob: 71bcdcd99332f802b64f2ef790e3bd930ba811ce (plain) (blame)
1
2
3
4
5
6
7
8
9
#include "pthread_impl.h"

int pthread_cond_signal(pthread_cond_t *c)
{
	if (!c->_c_waiters) return 0;
	a_inc(&c->_c_seq);
	if (c->_c_waiters) __wake(&c->_c_seq, 1, 0);
	return 0;
}