synccall: add separate exit_sem to fix thread release logic bug
[musl.git] / src / thread / pthread_attr_setscope.c
blob46b520c0412c99a22d5e608ff4074a35301f4122
1 #include "pthread_impl.h"
3 int pthread_attr_setscope(pthread_attr_t *a, int scope)
5 switch (scope) {
6 case PTHREAD_SCOPE_SYSTEM:
7 return 0;
8 case PTHREAD_SCOPE_PROCESS:
9 return ENOTSUP;
10 default:
11 return EINVAL;