note a leak that needs fixing eventually
[trinity.git] / syscalls / sigreturn.c
blob1c9757ebb057b6a0df9baf29e33b575586e354ee
1 /*
2 * unsigned long sys_sigreturn(struct pt_regs *regs)
3 */
4 #include "sanitise.h"
6 struct syscallentry 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,