Records

Functions

  • zx_status_t ExitExceptionZxThread (zx::exception exception)

    This function points the thread to `zx_thread_exit`. Calling `zx_thread_exit` does not

    call any thread exit callback functions.

    Defined at line 62 of file ../../zircon/system/ulib/test-exceptions/exception-handling.cc

  • zx_status_t ExitExceptionCThread (zx::exception exception)

    This function points the thread to `thrd_exit(0)`. This will call thrd exit callback

    functions and free the thread's stack.

    NOTE: Should only be called on thrd threads.

    Defined at line 66 of file ../../zircon/system/ulib/test-exceptions/exception-handling.cc

  • zx_status_t ExitExceptionPThread (zx::exception exception)

    This function points the thread to `pthread_exit(nullptr)`. This will call pthread exit callback

    functions and free the thread's stack.

    NOTE: Should only be called on pthread threads.

    Defined at line 71 of file ../../zircon/system/ulib/test-exceptions/exception-handling.cc