var scope reduction
[trinity.git] / syscalls / sched_setparam.c
blob398ed3b9bce2f404373bdd86aa5690c33316dcb9
1 /*
2 * SYSCALL_DEFINE2(sched_setparam, pid_t, pid, struct sched_param __user *, param)
3 */
4 #include "sanitise.h"
6 struct syscallentry syscall_sched_setparam = {
7 .name = "sched_setparam",
8 .num_args = 2,
9 .arg1name = "pid",
10 .arg1type = ARG_PID,
11 .arg2name = "param",
12 .arg2type = ARG_ADDRESS,