From acf4fef6f52b2d7e6852ff5284d83d67ac98bfe4 Mon Sep 17 00:00:00 2001 From: apio Date: Wed, 12 Jul 2023 19:37:22 +0200 Subject: [PATCH] sysfuzz: Skip invoking sigreturn --- apps/sysfuzz.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/sysfuzz.cpp b/apps/sysfuzz.cpp index 424729ca..75348e18 100644 --- a/apps/sysfuzz.cpp +++ b/apps/sysfuzz.cpp @@ -20,7 +20,7 @@ int random_syscall() while (true) { sys = rand() % Syscalls::__count; - if (sys == SYS_exit || sys == SYS_usleep || sys == SYS_fork) continue; + if (sys == SYS_exit || sys == SYS_usleep || sys == SYS_fork || sys == SYS_sigreturn) continue; break; }