next up previous contents index
Next: 18.3.28 pthread_join: Join with Up: 18.3 POSIX Threads Reference Previous: 18.3.26 pthread_detach: Detach a

18.3.27 pthread_exit: Terminate a thread with status

 

SYNOPSIS

#include <oskit/threads/pthread.h>

int pthread_exit(void *status);

DESCRIPTION

The current thread is terminated, with its status value made available to the parent using pthread_join.

PARAMETERS

status
The exit status.

RETURNS

This function does not return.

RELATED INFORMATION

pthread_join, pthread_create, pthread_detach



University of Utah Flux Research Group