*** UNIX MANUAL PAGE BROWSER ***

A Nergahak database for man pages research.

Navigation

Directory Browser

1Browse 4.4BSD4.4BSD
1Browse Digital UNIXDigital UNIX 4.0e
1Browse FreeBSDFreeBSD 14.3
1Browse MINIXMINIX 3.4.0rc6-d5e4fc0
1Browse NetBSDNetBSD 10.1
1Browse OpenBSDOpenBSD 7.7
1Browse UNIX v7Version 7 UNIX
1Browse UNIX v10Version 10 UNIX

Manual Page Search

Manual Page Result

0 Command: pthread_detach | Section: 3 | Source: Digital UNIX | File: pthread_detach.3.gz
pthread_detach(3) Library Functions Manual pthread_detach(3) NAME pthread_detach - Marks a thread object for deletion. LIBRARY DECthreads POSIX 1003.1c Library (libpthread.so) SYNOPSIS #include <pthread.h> int pthread_detach( pthread_t thread); STANDARDS Interfaces documented on this reference page conform to industry stan- dards as follows: IEEE Std 1003.1c-1995, POSIX System Application Program Interface PARAMETERS Thread object being marked for deletion. DESCRIPTION This routine marks the specified thread object to indicate that storage for the corresponding thread can be reclaimed when the thread termi- nates. This includes storage for the thread argument's return value, as well as the thread object. If thread has not terminated when this routine is called, this routine does not cause it to terminate. When a thread object is no longer referenced, call this routine. The results of this routine are unpredictable if the value of thread refers to a thread object that does not exist. A thread can be created already detached by setting its thread object's detachstate attribute. The pthread_join(3) routine also detaches the target thread after pthread_join(3) returns successfully. RETURN VALUES If an error condition occurs, this routine returns an integer value in- dicating the type of error. Possible return values are as follows: Successful completion. The value specified by thread does not refer to a joinable thread. The value specified by thread cannot be found. ERRORS None RELATED INFORMATION Routines: pthread_cancel(3), pthread_create(3), pthread_exit(3), pthread_join(3) Manuals: Guide to DECthreads and Programmer's Guide delim off pthread_detach(3)

Navigation Options