File:  [DVB] / dietlibc / libpthread / pthread_attr_setscope.c
Revision 1.5: 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_attr_setscope(pthread_attr_t*attr,int scope) {
  (void)attr;
  if (scope==PTHREAD_SCOPE_SYSTEM) return 0;
  if (scope==PTHREAD_SCOPE_PROCESS) return ENOTSUP;
  return EINVAL;
}

LinuxTV legacy CVS <linuxtv.org/cvs>