Symbol: sched_param
include/pthread.h
282
struct sched_param *);
include/pthread.h
287
const struct sched_param *);
include/pthread.h
291
struct sched_param *);
include/pthread.h
293
const struct sched_param *);
include/sched.h
58
int sched_setparam(pid_t, const struct sched_param *);
include/sched.h
59
int sched_getparam(pid_t, struct sched_param *);
include/sched.h
61
int sched_setscheduler(pid_t, int, const struct sched_param *);
include/spawn.h
36
struct sched_param;
include/spawn.h
84
struct sched_param *__restrict);
include/spawn.h
95
const struct sched_param *__restrict);
lib/libc/gen/posix_spawn.c
404
struct sched_param *__restrict schedparam)
lib/libc/gen/posix_spawn.c
42
struct sched_param sa_schedparam;
lib/libc/gen/posix_spawn.c
450
const struct sched_param *__restrict schedparam)
lib/libc/include/thread_private.h
409
struct sched_param sched_param;
lib/librthread/rthread.c
378
thread->attr.sched_param = self->attr.sched_param;
lib/librthread/rthread.c
85
.sched_param = { .sched_priority = 0 },
lib/librthread/rthread_sched.c
126
return (thread->attr.sched_param.sched_priority);
lib/librthread/rthread_sched.c
135
thread->attr.sched_param.sched_priority = priority;
lib/librthread/rthread_sched.c
33
struct sched_param *param)
lib/librthread/rthread_sched.c
40
*param = thread->attr.sched_param;
lib/librthread/rthread_sched.c
47
const struct sched_param *param)
lib/librthread/rthread_sched.c
58
thread->attr.sched_param = *param;
lib/librthread/rthread_sched.c
65
struct sched_param *param)
lib/librthread/rthread_sched.c
67
*param = (*attrp)->sched_param;
lib/librthread/rthread_sched.c
74
const struct sched_param *param)
lib/librthread/rthread_sched.c
76
(*attrp)->sched_param = *param;