pthread_attr_setschedparam.c 180 B

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