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
move_pages: just use calloc
[trinity.git]
/
syscalls
/
setpgid.c
blob
111ebe1fcbf7bd9a9e8b671ecdc890ede3125626
1
/*
2
* SYSCALL_DEFINE2(setpgid, pid_t, pid, pid_t, pgid)
3
*/
4
#include
"sanitise.h"
5
6
struct
syscallentry syscall_setpgid
= {
7
.
name
=
"setpgid"
,
8
.
num_args
=
2
,
9
.
arg1name
=
"pid"
,
10
.
arg1type
=
ARG_PID
,
11
.
arg2name
=
"pgid"
,
12
};