From 8bff832f4890bfc7d18d8bad3259aad938858610 Mon Sep 17 00:00:00 2001 From: Anton Lindqvist Date: Thu, 6 Dec 2018 17:50:05 +0100 Subject: sys/openbsd: correct semctl syscall number --- executor/defs.h | 2 +- executor/syscalls.h | 20 ++++++++++---------- 2 files changed, 11 insertions(+), 11 deletions(-) (limited to 'executor') diff --git a/executor/defs.h b/executor/defs.h index 8f8523515..847171302 100644 --- a/executor/defs.h +++ b/executor/defs.h @@ -130,7 +130,7 @@ #if GOARCH_amd64 #define GOARCH "amd64" -#define SYZ_REVISION "c2110f93ae48e34a74b88b9a72075b7a376f55cb" +#define SYZ_REVISION "96c86956ff53b5ef15c41b9dec76cb43a2dcef15" #define SYZ_EXECUTOR_USES_FORK_SERVER 1 #define SYZ_EXECUTOR_USES_SHMEM 1 #define SYZ_PAGE_SIZE 4096 diff --git a/executor/syscalls.h b/executor/syscalls.h index 28aab3045..682f95a2f 100644 --- a/executor/syscalls.h +++ b/executor/syscalls.h @@ -13068,16 +13068,16 @@ const call_t syscalls[] = { {"renameat", 323}, {"rmdir", 137}, {"select", 71}, - {"semctl$GETALL", 442}, - {"semctl$GETNCNT", 442}, - {"semctl$GETPID", 442}, - {"semctl$GETVAL", 442}, - {"semctl$GETZCNT", 442}, - {"semctl$IPC_RMID", 442}, - {"semctl$IPC_SET", 442}, - {"semctl$IPC_STAT", 442}, - {"semctl$SETALL", 442}, - {"semctl$SETVAL", 442}, + {"semctl$GETALL", 295}, + {"semctl$GETNCNT", 295}, + {"semctl$GETPID", 295}, + {"semctl$GETVAL", 295}, + {"semctl$GETZCNT", 295}, + {"semctl$IPC_RMID", 295}, + {"semctl$IPC_SET", 295}, + {"semctl$IPC_STAT", 295}, + {"semctl$SETALL", 295}, + {"semctl$SETVAL", 295}, {"semget", 221}, {"semget$private", 221}, {"semop", 290}, -- cgit mrf-deployment