sysfuzz: Skip invoking sigreturn
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
apio 2023-07-12 19:37:22 +02:00
parent 546d900454
commit acf4fef6f5
Signed by: apio
GPG Key ID: B8A7D06E42258954

View File

@ -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;
}