From 79248ee88b39eb1a5b730f3bc0a995efed4d6a2c Mon Sep 17 00:00:00 2001 From: David Pursell Date: Wed, 30 Oct 2019 10:00:55 -0700 Subject: sys/fuchsia: remove deprecated exception APIs The port-based exception APIs have been deprecated on Fuchsia and will be removed shortly. Delete them from the syscall definitions and modify the Fuchsia executor to use the new channel-based APIs instead. --- executor/syscalls.h | 4 ---- 1 file changed, 4 deletions(-) (limited to 'executor/syscalls.h') diff --git a/executor/syscalls.h b/executor/syscalls.h index e608c9970..0d81a1481 100644 --- a/executor/syscalls.h +++ b/executor/syscalls.h @@ -1597,9 +1597,7 @@ const call_t syscalls[] = { {"zx_system_get_num_cpus", 0, (syscall_t)zx_system_get_num_cpus}, {"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_create_exception_channel", 0, (syscall_t)zx_task_create_exception_channel}, - {"zx_task_resume_from_exception", 0, (syscall_t)zx_task_resume_from_exception}, {"zx_thread_create", 0, (syscall_t)zx_thread_create}, {"zx_thread_exit", 0, (syscall_t)zx_thread_exit}, {"zx_thread_read_state", 0, (syscall_t)zx_thread_read_state}, @@ -2004,9 +2002,7 @@ const call_t syscalls[] = { {"zx_system_get_num_cpus", 0, (syscall_t)zx_system_get_num_cpus}, {"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_create_exception_channel", 0, (syscall_t)zx_task_create_exception_channel}, - {"zx_task_resume_from_exception", 0, (syscall_t)zx_task_resume_from_exception}, {"zx_thread_create", 0, (syscall_t)zx_thread_create}, {"zx_thread_exit", 0, (syscall_t)zx_thread_exit}, {"zx_thread_read_state", 0, (syscall_t)zx_thread_read_state}, -- cgit mrf-deployment