(none) (see pthread_create())
pthread_exit
Prototype:
#include <pthread.h>
void pthread_exit(void *retval);
General Description: Explicitly terminates current thread, returning retval). You can use a simple return statement as well.
Return Value: (none)
Parameters
retval The void* value to return. Make sure that this value is non-stack memory.
Possible Errors
Examples