mirror of
https://github.com/reactos/syzkaller.git
synced 2024-11-27 13:20:34 +00:00
a251f32666
Disable zx_task_kill until we figure out how to prevent executor from killing fuzzer. Update #594
17 lines
711 B
Plaintext
17 lines
711 B
Plaintext
# Copyright 2017 syzkaller project authors. All rights reserved.
|
|
# Use of this source code is governed by Apache 2 LICENSE that can be found in the LICENSE file.
|
|
|
|
include <zircon/syscalls.h>
|
|
include <zircon/syscalls/exception.h>
|
|
|
|
resource zx_task[zx_handle]
|
|
|
|
zx_task_resume(task zx_task, options flags[task_resume_options])
|
|
zx_task_bind_exception_port(task zx_task, eport zx_port, key proc[1000, 4], options flags[exception_port_options])
|
|
|
|
# This is disabled until we figure out how to prevent executor from killing fuzzer (#594).
|
|
# zx_task_kill(handle zx_task)
|
|
|
|
task_resume_options = ZX_RESUME_EXCEPTION, ZX_RESUME_TRY_NEXT
|
|
exception_port_options = ZX_EXCEPTION_PORT_UNBIND_QUIETLY, ZX_EXCEPTION_PORT_DEBUGGER
|