summaryrefslogtreecommitdiffstats
path: root/mdk-stage1/dietlibc/libpthread/pthread_cond_init.c
blob: 20b38bef2a033ca79a8f0d87cb5babe578b71196 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include <unistd.h>
#include <errno.h>

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

int pthread_cond_init(pthread_cond_t *cond, pthread_condattr_t *cond_attr)
{
  __THREAD_INIT();

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