diff options
| author | Anton Lindqvist <anton@basename.se> | 2018-12-06 17:50:05 +0100 |
|---|---|---|
| committer | Dmitry Vyukov <dvyukov@google.com> | 2018-12-07 09:45:14 +0100 |
| commit | 8bff832f4890bfc7d18d8bad3259aad938858610 (patch) | |
| tree | b8974e7c8e536e5994aa76a6b73ba9001e801e63 /executor | |
| parent | dcf836b12d34be9fd7766104dfea168b76b4212e (diff) | |
sys/openbsd: correct semctl syscall number
Diffstat (limited to 'executor')
| -rw-r--r-- | executor/defs.h | 2 | ||||
| -rw-r--r-- | executor/syscalls.h | 20 |
2 files changed, 11 insertions, 11 deletions
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}, |
