HomeSort by: relevance | last modified time | path
    Searched refs:sched_param (Results 1 - 25 of 33) sorted by relevancy

1 2

  /src/include/
sched.h 43 int sched_setparam(pid_t, const struct sched_param *);
44 int sched_getparam(pid_t, struct sched_param *);
45 int sched_setscheduler(pid_t, int, const struct sched_param *);
spawn.h 74 struct sched_param * __restrict);
85 const struct sched_param * __restrict);
  /src/lib/libc/sys/
sched.c 49 sched_setparam(pid_t pid, const struct sched_param *param)
51 struct sched_param sp;
53 memset(&sp, 0, sizeof(struct sched_param));
59 sched_getparam(pid_t pid, struct sched_param *param)
66 sched_setscheduler(pid_t pid, int policy, const struct sched_param *param)
68 struct sched_param sp;
75 memset(&sp, 0, sizeof(struct sched_param));
87 struct sched_param sp;
  /src/lib/libpthread/
pthread_misc.c 64 pthread_getschedparam(pthread_t thread, int *policy, struct sched_param *param)
81 const struct sched_param *param)
83 struct sched_param sp;
91 memcpy(&sp, param, sizeof(struct sched_param));
133 struct sched_param sp;
pthread_compat.c 162 _sched_setparam(pid_t a, lwpid_t b, int c, const struct sched_param *d)
169 _sched_getparam(pid_t a, lwpid_t b, int *c, struct sched_param *d)
pthread.h 70 struct sched_param * __restrict);
72 const struct sched_param * __restrict);
225 struct sched_param * __restrict);
226 int pthread_setschedparam(pthread_t, int, const struct sched_param *);
pthread_attr.c 278 const struct sched_param *param)
300 struct sched_param *param)
pthread_int.h 80 struct sched_param ptap_sp;
  /src/sys/sys/
sched.h 81 struct sched_param { struct
126 int _sched_getparam(pid_t, lwpid_t, int *, struct sched_param *);
127 int _sched_setparam(pid_t, lwpid_t, int, const struct sched_param *);
281 int do_sched_setparam(pid_t, lwpid_t, int, const struct sched_param *);
282 int do_sched_getparam(pid_t, lwpid_t, int *, struct sched_param *);
spawn.h 44 struct sched_param sa_schedparam;
  /src/lib/libc/gen/
posix_spawn_sched.c 82 struct sched_param * __restrict schedparam)
128 const struct sched_param * __restrict schedparam)
  /src/sys/compat/freebsd/
freebsd_sched.c 66 struct sched_param *native_params)
98 sched_native2freebsd(int native_policy, const struct sched_param *native_params,
141 struct sched_param sp;
180 struct sched_param sp;
214 struct sched_param sp;
  /src/usr.sbin/schedctl/
schedctl.c 61 static void sched_set(pid_t, lwpid_t, int, struct sched_param *, cpuset_t *);
74 struct sched_param *sp;
87 sp = calloc(1, sizeof(struct sched_param));
185 struct sched_param *sp, cpuset_t *cpuset)
207 struct sched_param sp;
  /src/tests/lib/librt/
t_sched.c 51 struct sched_param s1, s2;
112 struct sched_param sched;
  /src/tests/lib/libc/gen/posix_spawn/
t_spawnattr.c 79 struct sched_param param;
111 struct sched_param sp, child_sp;
  /src/regress/sys/kern/latency1/
latency1.c 93 struct sched_param sp;
  /src/sys/external/bsd/drm2/include/linux/
sched.h 124 sched_setscheduler(struct proc *p, int class, struct sched_param *param)
  /src/sys/kern/
sys_sched.c 109 const struct sched_param *params)
206 syscallarg(const struct sched_param *) params;
208 struct sched_param params;
229 struct sched_param *params)
231 struct sched_param lparams;
294 syscallarg(struct sched_param *) params;
296 struct sched_param params;
  /src/regress/sys/kern/latency2/
latency2.c 94 struct sched_param sp;
  /src/sys/compat/linux/common/
linux_sched.c 334 * in particular, sched_param::sched_priority is always 0.
342 int *native_policy, struct sched_param *native_params)
395 sched_native2linux(int native_policy, struct sched_param *native_params,
459 struct sched_param sp;
498 struct sched_param sp;
536 struct sched_param sp;
  /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/
sanitizer_platform_limits_openbsd.cc 88 unsigned struct_sched_param_sz = sizeof(struct sched_param);
sanitizer_platform_limits_solaris.cc 89 unsigned struct_sched_param_sz = sizeof(struct sched_param);
sanitizer_platform_limits_freebsd.cc 117 unsigned struct_sched_param_sz = sizeof(struct sched_param);
  /src/tests/lib/libpthread/
t_mutex.c 343 struct sched_param param;
  /src/sys/external/bsd/drm2/dist/drm/scheduler/
sched_main.c 748 struct sched_param sparam = {.sched_priority = 1};

Completed in 36 milliseconds

1 2