1 2 3 4 5 6 7
#include <signal.h> #include "syscall.h" int raise(int sig) { return __syscall_kill(__syscall_getpid(), sig); }