thread_schedparam 112 sys/include/thread.h int thread_schedparam(thread_t, int, int *); thread_schedparam 102 sys/kern/sysent.c /* 19 */ SYSENT(3, thread_schedparam), thread_schedparam 32 usr/lib/prex/syscalls/thread_getpolicy.c extern int thread_schedparam(thread_t t, int op, int *param); thread_schedparam 38 usr/lib/prex/syscalls/thread_getpolicy.c return thread_schedparam(t, 2, policy); thread_schedparam 32 usr/lib/prex/syscalls/thread_getpri.c extern int thread_schedparam(thread_t t, int op, int *param); thread_schedparam 38 usr/lib/prex/syscalls/thread_getpri.c return thread_schedparam(t, 0, pri); thread_schedparam 32 usr/lib/prex/syscalls/thread_setpolicy.c extern int thread_schedparam(thread_t t, int op, int *param); thread_schedparam 38 usr/lib/prex/syscalls/thread_setpolicy.c return thread_schedparam(t, 3, &policy); thread_schedparam 32 usr/lib/prex/syscalls/thread_setpri.c extern int thread_schedparam(thread_t t, int op, int *param); thread_schedparam 38 usr/lib/prex/syscalls/thread_setpri.c return thread_schedparam(t, 1, &pri);