Unix and Linux Discussions Tagged with thread |
|
Thread / Thread Starter |
Last Post |
Replies |
Views |
Forum |
|
|
|
32 |
283,177 |
Shell Programming and Scripting |
|
|
|
1 |
11,711 |
UNIX for Advanced & Expert Users |
|
|
|
3 |
49,692 |
Post Here to Contact Site Administrators and Moderators |
|
|
|
5 |
10,975 |
Post Here to Contact Site Administrators and Moderators |
|
|
|
25 |
23,575 |
Web Development |
|
|
|
0 |
3,063 |
What is on Your Mind? |
|
|
|
1 |
11,737 |
Post Here to Contact Site Administrators and Moderators |
|
|
|
6 |
253,490 |
Emergency UNIX and Linux Support |
|
|
|
5 |
10,392 |
Post Here to Contact Site Administrators and Moderators |
|
|
|
1 |
2,803 |
Post Here to Contact Site Administrators and Moderators |
|
|
|
2 |
2,535 |
Shell Programming and Scripting |
|
|
|
1 |
3,431 |
Programming |
|
|
|
5 |
2,675 |
Shell Programming and Scripting |
|
|
|
5 |
3,762 |
UNIX for Advanced & Expert Users |
|
|
|
0 |
4,249 |
Programming |
|
|
|
2 |
4,099 |
Programming |
|
|
|
1 |
10,198 |
Programming |
|
|
|
14 |
13,503 |
Programming |
|
|
|
3 |
2,724 |
Shell Programming and Scripting |
|
|
|
8 |
7,619 |
Programming |
|
|
|
4 |
13,902 |
UNIX for Advanced & Expert Users |
|
|
|
1 |
5,857 |
UNIX for Dummies Questions & Answers |
|
|
|
5 |
4,605 |
HP-UX |
|
|
|
0 |
11,229 |
Programming |
|
|
|
1 |
5,994 |
Forum Support Area for Unregistered Users & Account Problems |
|
|
|
3 |
12,285 |
UNIX for Advanced & Expert Users |
|
|
|
1 |
2,796 |
UNIX for Advanced & Expert Users |
|
|
|
2 |
9,753 |
Post Here to Contact Site Administrators and Moderators |
|
|
|
2 |
6,391 |
SCO |
|
|
|
1 |
4,343 |
Forum Support Area for Unregistered Users & Account Problems |
|
|
|
3 |
4,840 |
Programming |
|
|
|
1 |
3,651 |
Forum Support Area for Unregistered Users & Account Problems |
|
|
|
1 |
4,677 |
Forum Support Area for Unregistered Users & Account Problems |
|
|
|
1 |
1,976 |
Post Here to Contact Site Administrators and Moderators |
|
|
|
1 |
5,743 |
Forum Support Area for Unregistered Users & Account Problems |
|
|
|
0 |
3,051 |
UNIX and Linux RSS News |
|
|
|
1 |
3,587 |
Forum Support Area for Unregistered Users & Account Problems |
|
|
|
1 |
3,697 |
Forum Support Area for Unregistered Users & Account Problems |
|
|
|
1 |
4,546 |
Forum Support Area for Unregistered Users & Account Problems |
|
|
|
1 |
2,697 |
Post Here to Contact Site Administrators and Moderators |
pthread_detach(3T) pthread_detach(3T)
NAME
pthread_detach() - mark a thread as detached to reclaim its resources when it terminates
SYNOPSIS
PARAMETERS
thread Thread whose resources are to be reclaimed immediately when it terminates.
DESCRIPTION
is used to detach the thread thread. When thread terminates, its resources will automatically be reclaimed by the system. If thread has
already terminated, causes the resources of thread to be reclaimed by the system.
does not cause thread to terminate.
Once a detached thread has terminated, its resources, including the thread ID, may be reused by the system. The return status of a detached
thread is lost when the thread terminates.
Calling this function multiple times for the same thread results in undefined behavior.
RETURN VALUE
Upon successful completion, returns zero. Otherwise, an error number is returned to indicate the error (the variable is not set).
ERRORS
If any of the following occur, the function returns the corresponding error number:
[EINVAL] thread does not refer to a joinable thread.
[ESRCH] No thread could be found corresponding to thread.
AUTHOR
was derived from the IEEE POSIX P1003.1c standard.
SEE ALSO
pthread_create(3T), pthread_join(3T), wait(2).
STANDARDS CONFORMANCE
Pthread Library pthread_detach(3T)