1
0

pthread_attr_getscope.c 155 B

1234567
  1. #include "pthread_impl.h"
  2. int pthread_attr_getscope(const pthread_attr_t *restrict a, int *restrict scope)
  3. {
  4. *scope = PTHREAD_SCOPE_SYSTEM;
  5. return 0;
  6. }