Query: pthread_detach
OS: osf1
Section: 3
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
pthread_detach(3) Library Functions Manual pthread_detach(3)NAMEpthread_detach - Marks a thread object for deletion.LIBRARYDECthreads POSIX 1003.1c Library (libpthread.so)SYNOPSIS#include <pthread.h> int pthread_detach( pthread_t thread);STANDARDSInterfaces documented on this reference page conform to industry standards as follows: IEEE Std 1003.1c-1995, POSIX System Application Program InterfacePARAMETERSThread object being marked for deletion.DESCRIPTIONThis routine marks the specified thread object to indicate that storage for the corresponding thread can be reclaimed when the thread ter- minates. 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 VALUESIf an error condition occurs, this routine returns an integer value indicating 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.ERRORSNoneRELATED INFORMATIONRoutines: 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)
Related Man Pages |
---|
pthread_join(3c) - opensolaris |
pthread_detach(3) - debian |
pthread_join(3) - osf1 |
pthread_join(3c) - sunos |
pthread_detach(3) - x11r4 |
Similar Topics in the Unix Linux Community |
---|
Disabling thread deletion by OP? |
deletion of thread backup scripts!!! |
Thread questions |
Shifting of lines in a file |
Need Help With System Recovery After HD Errors |