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

int pthread_attr_getscope(const pthread_attr_t*attr,int*scope) {
  (void)attr;
  *scope=PTHREAD_SCOPE_SYSTEM;
  return 0;
}

LinuxTV legacy CVS <linuxtv.org/cvs>