dummy implementation of set_thread_area
[musl] / src / thread / pthread_attr_setscope.c
index a970a81..d56ee39 100644 (file)
@@ -2,5 +2,6 @@
 
 int pthread_attr_setscope(pthread_attr_t *a, int scope)
 {
+       if (scope > 1U) return EINVAL;
        return 0;
 }