File:  [DVB] / dietlibc / libpthread / pthread_condattr_setshared.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_setpshared(pthread_condattr_t*attr,int pshared) {
  (void)attr;
  if ((pshared!=PTHREAD_PROCESS_PRIVATE) && (pshared!=PTHREAD_PROCESS_SHARED))
    return EINVAL;
  if (pshared!=PTHREAD_PROCESS_PRIVATE)
    return ENOSYS;
  return 0;
}


LinuxTV legacy CVS <linuxtv.org/cvs>