thread_exit - terminate the current running thread
#include <zircon/syscalls.h> void zx_thread_exit(void);
thread_exit() causes the currently running thread to cease running and exit.
The signal ZX_THREAD_TERMINATED will be assserted on the thread object upon exit and may be observed via object_wait_one() or object_wait_many() on a handle to the thread.
thread_exit() does not return.
handle_close, handle_duplicate, object_wait_one, object_wait_many, thread_create, thread_start.