repo.or.cz
/
trinity.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
note a leak that needs fixing eventually
[trinity.git]
/
syscalls
/
sched_setattr.c
blob
c365dacb9bd6282b2383048e954d12ad2bef28fe
1
/*
2
* SYSCALL_DEFINE2(sched_setattr, pid_t, pid, struct sched_attr __user *, uattr)
3
*/
4
#include
"sanitise.h"
5
6
struct
syscallentry syscall_sched_setattr
= {
7
.
name
=
"sched_setattr"
,
8
.
num_args
=
2
,
9
.
arg1name
=
"pid"
,
10
.
arg1type
=
ARG_PID
,
11
.
arg2name
=
"uattr"
,
12
.
arg2type
=
ARG_ADDRESS
,
13
};