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
merge setuid variants
[trinity.git]
/
syscalls
/
tkill.c
blob
097581b61a1fe3a15c7d58ccf2afb9994c8cdfd4
1
/*
2
* SYSCALL_DEFINE2(tkill, pid_t, pid, int, sig)
3
*/
4
#include
"sanitise.h"
5
6
struct
syscallentry syscall_tkill
= {
7
.
name
=
"tkill"
,
8
.
num_args
=
2
,
9
.
arg1name
=
"pid"
,
10
.
arg1type
=
ARG_PID
,
11
.
arg2name
=
"sig"
,
12
.
flags
=
AVOID_SYSCALL
,
13
};