From 66071e276fc06bc4482a4844c0596ede600d0ba3 Mon Sep 17 00:00:00 2001 From: Marco Vanotti Date: Wed, 28 Nov 2018 15:39:02 -0800 Subject: sys/fuchsia: fix task syscalls. This commit fixes two issues related to the task syscalls. The zx_task_resume syscall has been recently removed from zircon[0]. It has been deprecated for some time already. This commit removes the syscall. The `ZX_EXCEPTION_PORT_UNBIND_QUIETLY` option for the syscall `zx_task_bind_exception_port` has been removed recently as well[1]. This commit removes that option from tasks.txt. To test this change, I followed the procedure for building syzkaller for fuchsia: ```shell $ make extract TARGETOS=fuchsia SOURCEDIR=${FUCHSIADIR} $ make generate $ make TARGETOS=fuchsia TARGETARCH=amd64 SOURCEDIR=${FUCHSIADIR} ``` I excluded the changes from make extract. This commit only has the generated files from make generate. [0]: https://fuchsia-review.googlesource.com/c/zircon/+/228712 [1]: https://fuchsia-review.googlesource.com/c/zircon/+/228658 --- executor/defs.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'executor/defs.h') diff --git a/executor/defs.h b/executor/defs.h index f49920018..a4e90c930 100644 --- a/executor/defs.h +++ b/executor/defs.h @@ -35,7 +35,7 @@ #if GOARCH_amd64 #define GOARCH "amd64" -#define SYZ_REVISION "dd1c90b2481bcb2c9dfb4a2b84b671cb2bf0d196" +#define SYZ_REVISION "bd572b59fe6577d24e22a364873c5666c1c84b7e" #define SYZ_EXECUTOR_USES_FORK_SERVER 0 #define SYZ_EXECUTOR_USES_SHMEM 0 #define SYZ_PAGE_SIZE 4096 @@ -45,7 +45,7 @@ #if GOARCH_arm64 #define GOARCH "arm64" -#define SYZ_REVISION "e947153b4adcbaea981564a646566a4efa8fdffd" +#define SYZ_REVISION "43822deeef9cd6ecfb711378d529dca12ec20614" #define SYZ_EXECUTOR_USES_FORK_SERVER 0 #define SYZ_EXECUTOR_USES_SHMEM 0 #define SYZ_PAGE_SIZE 4096 -- cgit mrf-deployment