#include #include #include #include "thread_internal.h" int pthread_attr_setscope(pthread_attr_t*attr,int scope) { if (0) { attr=0; } if (scope==PTHREAD_SCOPE_SYSTEM) return 0; if (scope==PTHREAD_SCOPE_PROCESS) return ENOTSUP; return EINVAL; }