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

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