aboutsummaryrefslogtreecommitdiffstats
path: root/executor/syscalls.h
diff options
context:
space:
mode:
authorDavid Pursell <dpursell@google.com>2019-10-30 10:00:55 -0700
committerMarco Vanotti <mvanotti@users.noreply.github.com>2019-11-14 16:21:01 -0800
commit79248ee88b39eb1a5b730f3bc0a995efed4d6a2c (patch)
tree04b01b0c1cee6866b94f5fa82e3a9087e3a52028 /executor/syscalls.h
parenta3f5ce76b10a3c0e2a07cd96bd5a29acc42ac532 (diff)
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.
Diffstat (limited to 'executor/syscalls.h')
-rw-r--r--executor/syscalls.h4
1 files changed, 0 insertions, 4 deletions
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},