summaryrefslogtreecommitdiffstats
path: root/mdk-stage1/dietlibc/libpthread/pthread_cond_destroy.c
blob: b553b41df8ab7db4083acc4cc453ea89e1a63606 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#include <string.h>
#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) {
    return EBUSY;
  }

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