fix centos6 build failures
[trinity.git] / syscalls / sigreturn.c
blob9495368e58bb40556ea735313c44a4b708a3c423
1 /*
2 * unsigned long sys_sigreturn(struct pt_regs *regs)
3 */
4 #include "sanitise.h"
6 struct syscall syscall_sigreturn = {
7 .name = "rt_sigreturn",
8 .num_args = 1,
9 .flags = AVOID_SYSCALL, // Confuses the signal state and causes the fuzzer to hang with timeout not firing
10 .arg1name = "regs",
11 .arg1type = ARG_ADDRESS,