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

int pthread_cond_broadcast(pthread_cond_t *c)
{
	c->_c_block = 0;
	__wake(&c->_c_block, -1, 0);
	return 0;
}