merge newfstat variants
[trinity.git] / syscalls / kill.c
blob2d9eb069645289384e493ea236943a83c4a3c4d6
1 /*
2 * SYSCALL_DEFINE2(kill, pid_t, pid, int, sig)
3 */
4 #include "sanitise.h"
6 struct syscallentry syscall_kill = {
7 .name = "kill",
8 .num_args = 2,
9 .arg1name = "pid",
10 .arg1type = ARG_PID,
11 .arg2name = "sig",
12 .flags = AVOID_SYSCALL,