split up constants.h some
[trinity.git] / syscalls / rt_sigreturn.c
blob8922cc218fb602d13794b25a52e2b74ef6ecd8d8
1 /*
2 * long sys_rt_sigreturn(struct pt_regs *regs)
3 */
4 #include "sanitise.h"
6 struct syscallentry syscall_rt_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,