sched_param
struct sched_param *);
const struct sched_param *);
struct sched_param *);
const struct sched_param *);
int sched_setparam(pid_t, const struct sched_param *);
int sched_getparam(pid_t, struct sched_param *);
int sched_setscheduler(pid_t, int, const struct sched_param *);
struct sched_param;
struct sched_param *__restrict);
const struct sched_param *__restrict);
struct sched_param *__restrict schedparam)
struct sched_param sa_schedparam;
const struct sched_param *__restrict schedparam)
struct sched_param sched_param;
thread->attr.sched_param = self->attr.sched_param;
.sched_param = { .sched_priority = 0 },
return (thread->attr.sched_param.sched_priority);
thread->attr.sched_param.sched_priority = priority;
struct sched_param *param)
*param = thread->attr.sched_param;
const struct sched_param *param)
thread->attr.sched_param = *param;
struct sched_param *param)
*param = (*attrp)->sched_param;
const struct sched_param *param)
(*attrp)->sched_param = *param;