merge unlink variants
[trinity.git] / syscalls / tgkill.c
blob91cf45253501d2a7c298580f1117d9a5c3d5e032
1 /*
2 * SYSCALL_DEFINE3(tgkill, pid_t, tgid, pid_t, pid, int, sig)
3 */
4 #include "sanitise.h"
6 struct syscallentry syscall_tgkill = {
7 .name = "tgkill",
8 .num_args = 3,
9 .arg1name = "tgid",
10 .arg1type = ARG_PID,
11 .arg2name = "pid",
12 .arg2type = ARG_PID,
13 .arg3name = "sig",
14 .flags = AVOID_SYSCALL,