#include <oskit/threads/pthread.h>int pthread_exit(void *status);
The current thread is terminated, with its status value made available to the parent using pthread_join.
- status
- The exit status.
This function does not return.
pthread_join, pthread_create, pthread_detach