silc_thread_exit

SYNOPSIS

    void silc_thread_exit(void *exit_value);

DESCRIPTION

Exits the current thread. This can be called to explicitly exit the thread with `exit_value'. Another way to exit (destroy) the current thread is to return from the SilcThreadStart function with exit value. The exit value is passed to another thread if it is waiting it with silc_thread_wait function.