Symbol: sched_param
include/sched.h
43
int sched_setparam(pid_t, const struct sched_param *);
include/sched.h
44
int sched_getparam(pid_t, struct sched_param *);
include/sched.h
45
int sched_setscheduler(pid_t, int, const struct sched_param *);
include/spawn.h
74
struct sched_param * __restrict);
include/spawn.h
85
const struct sched_param * __restrict);
lib/libc/gen/posix_spawn_sched.c
128
const struct sched_param * __restrict schedparam)
lib/libc/gen/posix_spawn_sched.c
82
struct sched_param * __restrict schedparam)
lib/libc/sys/sched.c
49
sched_setparam(pid_t pid, const struct sched_param *param)
lib/libc/sys/sched.c
51
struct sched_param sp;
lib/libc/sys/sched.c
53
memset(&sp, 0, sizeof(struct sched_param));
lib/libc/sys/sched.c
59
sched_getparam(pid_t pid, struct sched_param *param)
lib/libc/sys/sched.c
66
sched_setscheduler(pid_t pid, int policy, const struct sched_param *param)
lib/libc/sys/sched.c
68
struct sched_param sp;
lib/libc/sys/sched.c
75
memset(&sp, 0, sizeof(struct sched_param));
lib/libc/sys/sched.c
87
struct sched_param sp;
lib/libpthread/pthread.h
227
struct sched_param * __restrict);
lib/libpthread/pthread.h
228
int pthread_setschedparam(pthread_t, int, const struct sched_param *);
lib/libpthread/pthread.h
70
struct sched_param * __restrict);
lib/libpthread/pthread.h
72
const struct sched_param * __restrict);
lib/libpthread/pthread_attr.c
282
const struct sched_param *param)
lib/libpthread/pthread_attr.c
304
struct sched_param *param)
lib/libpthread/pthread_compat.c
162
_sched_setparam(pid_t a, lwpid_t b, int c, const struct sched_param *d)
lib/libpthread/pthread_compat.c
169
_sched_getparam(pid_t a, lwpid_t b, int *c, struct sched_param *d)
lib/libpthread/pthread_int.h
80
struct sched_param ptap_sp;
lib/libpthread/pthread_misc.c
133
struct sched_param sp;
lib/libpthread/pthread_misc.c
64
pthread_getschedparam(pthread_t thread, int *policy, struct sched_param *param)
lib/libpthread/pthread_misc.c
81
const struct sched_param *param)
lib/libpthread/pthread_misc.c
83
struct sched_param sp;
lib/libpthread/pthread_misc.c
91
memcpy(&sp, param, sizeof(struct sched_param));
regress/sys/kern/latency1/latency1.c
93
struct sched_param sp;
regress/sys/kern/latency2/latency2.c
94
struct sched_param sp;
sys/compat/freebsd/freebsd_sched.c
141
struct sched_param sp;
sys/compat/freebsd/freebsd_sched.c
180
struct sched_param sp;
sys/compat/freebsd/freebsd_sched.c
214
struct sched_param sp;
sys/compat/freebsd/freebsd_sched.c
66
struct sched_param *native_params)
sys/compat/freebsd/freebsd_sched.c
98
sched_native2freebsd(int native_policy, const struct sched_param *native_params,
sys/compat/freebsd/freebsd_syscallargs.h
547
syscallarg(const struct sched_param *) sp;
sys/compat/linux/common/linux_sched.c
344
int *native_policy, struct sched_param *native_params)
sys/compat/linux/common/linux_sched.c
397
sched_native2linux(int native_policy, struct sched_param *native_params,
sys/compat/linux/common/linux_sched.c
461
struct sched_param sp;
sys/compat/linux/common/linux_sched.c
500
struct sched_param sp;
sys/compat/linux/common/linux_sched.c
538
struct sched_param sp;
sys/compat/netbsd32/netbsd32_netbsd.c
2381
NETBSD32TOP_UAP(params, const struct sched_param *);
sys/compat/netbsd32/netbsd32_netbsd.c
2402
NETBSD32TOP_UAP(params, struct sched_param *);
sys/kern/sys_sched.c
109
const struct sched_param *params)
sys/kern/sys_sched.c
208
struct sched_param params;
sys/kern/sys_sched.c
229
struct sched_param *params)
sys/kern/sys_sched.c
231
struct sched_param lparams;
sys/kern/sys_sched.c
296
struct sched_param params;
sys/sys/sched.h
126
int _sched_getparam(pid_t, lwpid_t, int *, struct sched_param *);
sys/sys/sched.h
127
int _sched_setparam(pid_t, lwpid_t, int, const struct sched_param *);
sys/sys/sched.h
281
int do_sched_setparam(pid_t, lwpid_t, int, const struct sched_param *);
sys/sys/sched.h
282
int do_sched_getparam(pid_t, lwpid_t, int *, struct sched_param *);
sys/sys/spawn.h
44
struct sched_param sa_schedparam;
sys/sys/syscallargs.h
2208
syscallarg(const struct sched_param *) params;
sys/sys/syscallargs.h
2218
syscallarg(struct sched_param *) params;
tests/lib/libc/gen/posix_spawn/t_spawnattr.c
111
struct sched_param sp, child_sp;
tests/lib/libc/gen/posix_spawn/t_spawnattr.c
79
struct sched_param param;
tests/lib/libc/sys/t_futex_ops.c
1463
struct sched_param sp;
tests/lib/libc/sys/t_futex_ops.c
1480
struct sched_param sp;
tests/lib/libpthread/t_mutex.c
343
struct sched_param param;
tests/lib/librt/t_sched.c
112
struct sched_param sched;
tests/lib/librt/t_sched.c
51
struct sched_param s1, s2;
usr.sbin/schedctl/schedctl.c
185
struct sched_param *sp, cpuset_t *cpuset)
usr.sbin/schedctl/schedctl.c
207
struct sched_param sp;
usr.sbin/schedctl/schedctl.c
61
static void sched_set(pid_t, lwpid_t, int, struct sched_param *, cpuset_t *);
usr.sbin/schedctl/schedctl.c
74
struct sched_param *sp;
usr.sbin/schedctl/schedctl.c
87
sp = calloc(1, sizeof(struct sched_param));