Detach a thread from a process
#include <pthread.h> int pthread_detach( pthread_t thread );
libc
Use the -l c option to qcc to link against this library. This library is usually included automatically.
The pthread_detach() function detaches the thread with the given ID from its process. When a detached thread terminates, all system resources allocated to that thread are immediately reclaimed.
Safety: | |
---|---|
Cancellation point | No |
Interrupt handler | No |
Signal handler | Yes |
Thread | Yes |
pthread_join(), ThreadDetach()