1 2 3 4 5 6 7
#include <sched/scheduler.h> #include <signal.h> #include <syscalls.h> int syscall_kill(pid_t pid, int sig) { return kill(pid, sig); }