summaryrefslogtreecommitdiffstats
path: root/mdk-stage1/dietlibc/libpthread/pthread_cond_init.c
blob: 76dd5cb97fd7953df8475bcdeeae1eeca9a3b7a8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include <string.h>
#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;
}