The pthread_exit function

Name

pthread_exit -- 

Synopsis

#include <pthread.h>

void pthread_exit (any_t status);

Description

The pthread_exit function terminates the calling thread returning the value given by status to any thread that has called pthread_join for the calling thread.

Returns

The pthread_exit function returns no value.

Implementation Notes

None