summaryrefslogtreecommitdiffstats
path: root/mdk-stage1/dietlibc/libpthread/pthread_cond_broadcast.c
blob: d3c2274f36535e9ab7180c478765314286a5c352 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#include <unistd.h>
#include <errno.h>

#include <pthread.h>
#include "thread_internal.h"

int pthread_cond_broadcast(pthread_cond_t *cond)
{
  _pthread_descr tmp;

  __THREAD_INIT();

  __pthread_lock(&(cond->lock));
  while ((tmp=cond->wait_chain)) {
    cond->wait_chain=tmp->waitnext;
    tmp->waitnext=0;
    tmp->waiting=0;
  }
  __pthread_unlock(&(cond->lock));

  return 0;
}