#include #include #include #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) return ENOTSUP; else return EINVAL; }