summaryrefslogtreecommitdiffstats
path: root/mdk-stage1/dietlibc/libpthread/pthread_attr_setscope.c
blob: 39088c9b2156046651cbbbe7f1fb7b655d4dc7b9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#include <unistd.h>
#include <errno.h>

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

int pthread_attr_setscope(pthread_attr_t *attr, int scope)
{
  __THREAD_INIT();

  if (scope==PTHREAD_SCOPE_SYSTEM) return 0;

  if (scope==PTHREAD_SCOPE_PROCESS)
    (*(__errno_location()))=ENOTSUP;
  else
    (*(__errno_location()))=EINVAL;
  return -1;
}