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

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

int pthread_cond_destroy(pthread_cond_t *cond)
{
  __THREAD_INIT();

  if (cond->wait_chain) {
    (*__errno_location())=EBUSY;
    return 1;
  }

  memset(cond,0,sizeof(pthread_cond_t));
  return 0;
}