File:  [DVB] / dietlibc / libpthread / pthread_cond_init.c
Revision 1.4: download - view: text, annotated - select for diffs
Fri Feb 21 10:03:29 2014 UTC (10 years, 3 months ago) by leitner
Branches: MAIN
CVS tags: HEAD
remove compiler warnings

#include <unistd.h>
#include <errno.h>
#include <string.h>

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

int pthread_cond_init(pthread_cond_t*cond,pthread_condattr_t*cond_attr) {
  (void)cond_attr;
  memset(cond,0,sizeof(pthread_cond_t));
  cond->lock.__spinlock=PTHREAD_SPIN_UNLOCKED;
  return 0;
}

LinuxTV legacy CVS <linuxtv.org/cvs>