task_kill - Kill the provided task.
#include <zircon/syscalls.h>
zx_status_t zx_task_kill(zx_handle_t handle);
This kills the given process, thread or job.
If a process or thread uses this syscall to kill itself, this syscall does not return.
ZX_ERR_ACCESS_DENIED handle does not have ZX_RIGHT_DESTROY.