aboutsummaryrefslogtreecommitdiffstats
path: root/executor
diff options
context:
space:
mode:
authorDmitry Vyukov <dvyukov@google.com>2018-06-06 20:52:30 +0200
committerDmitry Vyukov <dvyukov@google.com>2018-06-06 20:52:30 +0200
commita251f3266689855c5edc9189ce47b0c5941f4674 (patch)
tree73c19dc9fe052bb028b4c3981e500b52747db901 /executor
parent0ac1284d5f2b216a961c6c205203bd952c8b0245 (diff)
sys/fuchsia: disable zx_task_kill
Disable zx_task_kill until we figure out how to prevent executor from killing fuzzer. Update #594
Diffstat (limited to 'executor')
-rw-r--r--executor/syscalls_fuchsia.h10
1 files changed, 4 insertions, 6 deletions
diff --git a/executor/syscalls_fuchsia.h b/executor/syscalls_fuchsia.h
index cb7d4dabb..205736e09 100644
--- a/executor/syscalls_fuchsia.h
+++ b/executor/syscalls_fuchsia.h
@@ -2,11 +2,11 @@
#if defined(__x86_64__) || 0
#define GOARCH "amd64"
-#define SYZ_REVISION "e7013a5597663fd453629ada2b2be037a661e70d"
+#define SYZ_REVISION "59c616fe9bad684c719408b4e8de7412bfe233eb"
#define SYZ_PAGE_SIZE 4096
#define SYZ_NUM_PAGES 4096
#define SYZ_DATA_OFFSET 536870912
-unsigned syscall_count = 158;
+unsigned syscall_count = 157;
call_t syscalls[] = {
{"chdir", 0, (syscall_t)chdir},
{"chmod", 0, (syscall_t)chmod},
@@ -133,7 +133,6 @@ call_t syscalls[] = {
{"zx_system_get_physmem", 0, (syscall_t)zx_system_get_physmem},
{"zx_system_get_version", 0, (syscall_t)zx_system_get_version},
{"zx_task_bind_exception_port", 0, (syscall_t)zx_task_bind_exception_port},
- {"zx_task_kill", 0, (syscall_t)zx_task_kill},
{"zx_task_resume", 0, (syscall_t)zx_task_resume},
{"zx_thread_create", 0, (syscall_t)zx_thread_create},
{"zx_thread_exit", 0, (syscall_t)zx_thread_exit},
@@ -172,11 +171,11 @@ call_t syscalls[] = {
#if defined(__aarch64__) || 0
#define GOARCH "arm64"
-#define SYZ_REVISION "c84351552d0bff950e1b08ddf86986d7ce6d0a82"
+#define SYZ_REVISION "815dd53cedad67cc59ee449f253b189bd1d01c94"
#define SYZ_PAGE_SIZE 4096
#define SYZ_NUM_PAGES 4096
#define SYZ_DATA_OFFSET 536870912
-unsigned syscall_count = 158;
+unsigned syscall_count = 157;
call_t syscalls[] = {
{"chdir", 0, (syscall_t)chdir},
{"chmod", 0, (syscall_t)chmod},
@@ -303,7 +302,6 @@ call_t syscalls[] = {
{"zx_system_get_physmem", 0, (syscall_t)zx_system_get_physmem},
{"zx_system_get_version", 0, (syscall_t)zx_system_get_version},
{"zx_task_bind_exception_port", 0, (syscall_t)zx_task_bind_exception_port},
- {"zx_task_kill", 0, (syscall_t)zx_task_kill},
{"zx_task_resume", 0, (syscall_t)zx_task_resume},
{"zx_thread_create", 0, (syscall_t)zx_thread_create},
{"zx_thread_exit", 0, (syscall_t)zx_thread_exit},