summaryrefslogtreecommitdiffstats
path: root/mdk-stage1/dietlibc/libpthread/pthread_attr_getscope.c
blob: 99a33110d4d3017965abdff9d280feefb08f7bb5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include <unistd.h>
#include <errno.h>

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

int pthread_attr_getscope(const pthread_attr_t *attr, int *scope)
{
  __THREAD_INIT();

  *scope=PTHREAD_SCOPE_SYSTEM;
  return 0;
}