blob: 2c055b08a8307f7aa9a8ab03d21a03d1436a8050 [file] [log] [blame]
#include "threads_impl.h"
int pthread_attr_setschedparam(pthread_attr_t* restrict a,
const struct sched_param* restrict param) {
a->_a_prio = param->sched_priority;
return 0;
}