File:  [DVB] / dietlibc / libpthread / pthread_condattr_getshared.c
Revision 1.2: 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 <pthread.h>
#include "thread_internal.h"

int pthread_condattr_getpshared(const pthread_condattr_t*attr,int*pshared) {
  (void)attr;
  *pshared=PTHREAD_PROCESS_PRIVATE;
  return 0;
}


LinuxTV legacy CVS <linuxtv.org/cvs>