|
|
|
psignal(3) -- system signal messages
|
|
The psignal() function locates the descriptive message string for the given signal number sig and writes it to the standard error. If the argument s is not NULL it is written to the standard error fil... |
|
pthreads(3) -- POSIX 1003.1c thread interface
|
|
A thread is a flow of control within a process. Each thread represents a minimal amount of state; normally just the CPU state and a signal mask. All other process state (such as memory, file descripto... |
|
|
pthread_attr_destroy(3) -- initialise and destroy threads attribute object
|
|
The function pthread_attr_init() initialises a thread attributes object attr with the default value for all of the individual attributes used by a given implementation. The resulting attribute object ... |
|
pthread_attr_getdetachstate(3) -- set and get detachstate attribute
|
|
The detachstate attribute controls whether the thread is created in a detached state. If the thread is created detached, then use of the ID of the newly created thread by the pthread_detach(3) or pthr... |
|
pthread_attr_getstackaddr(3) -- set and get stackaddr attribute
|
|
The functions pthread_attr_setstackaddr() and pthread_attr_getstackaddr(), respectively, set and get the thread creation stackaddr attribute in the attr object. The stackaddr attribute specifies the l... |
|
pthread_attr_getstacksize(3) -- set and get stacksize attribute
|
|
The functions pthread_attr_setstacksize() and pthread_attr_getstacksize(), respectively, set and get the thread creation stacksize attribute in the attr object. The stacksize attribute defines the min... |
|
pthread_attr_init(3) -- initialise and destroy threads attribute object
|
|
The function pthread_attr_init() initialises a thread attributes object attr with the default value for all of the individual attributes used by a given implementation. The resulting attribute object ... |
|
pthread_attr_setdetachstate(3) -- set and get detachstate attribute
|
|
The detachstate attribute controls whether the thread is created in a detached state. If the thread is created detached, then use of the ID of the newly created thread by the pthread_detach(3) or pthr... |
|
pthread_attr_setstackaddr(3) -- set and get stackaddr attribute
|
|
The functions pthread_attr_setstackaddr() and pthread_attr_getstackaddr(), respectively, set and get the thread creation stackaddr attribute in the attr object. The stackaddr attribute specifies the l... |
|
pthread_attr_setstacksize(3) -- set and get stacksize attribute
|
|
The functions pthread_attr_setstacksize() and pthread_attr_getstacksize(), respectively, set and get the thread creation stacksize attribute in the attr object. The stacksize attribute defines the min... |
|
pthread_cancel(3) -- cancel execution of a thread
|
|
The pthread_cancel() function requests that thread be cancelled. The target thread's cancelability state and type determines when the cancellation takes effect. When the cancellation is acted on, the... |
|
pthread_cleanup_pop(3) -- call the first cleanup routine
|
|
The pthread_cleanup_pop() function pops the top cleanup routine off of the current thread's cleanup routine stack, and, if execute is non-zero, it will execute the function. If there is no cleanup ro... |
|
pthread_cleanup_push(3) -- add a cleanup function for thread exit
|
|
The pthread_cleanup_push() function adds cleanup_routine to the top of the stack of cleanup handlers that get called when the current thread exits. When cleanup_routine is called, it is passed arg as ... |
|
pthread_cond_broadcast(3) -- unblock all threads waiting for a condition variable
|
|
The pthread_cond_broadcast() function unblocks all threads waiting for the condition variable cond. |
|
pthread_cond_destroy(3) -- destroy a condition variable
|
|
The pthread_cond_destroy() function frees the resources allocated by the condition variable cond. |