pthread_attr_setscope.c 130 B

1234567
  1. #include "pthread_impl.h"
  2. int pthread_attr_setscope(pthread_attr_t *a, int scope)
  3. {
  4. if (scope > 1U) return EINVAL;
  5. return 0;
  6. }