pthread_attr_setschedparam.c 169 B

1234567
  1. #include "pthread_impl.h"
  2. int pthread_attr_setschedparam(pthread_attr_t *a, const struct sched_param *param)
  3. {
  4. if (param->sched_priority) return ENOTSUP;
  5. return 0;
  6. }