*nix Documentation Project
·  Home
 +   man pages
·  Linux HOWTOs
·  FreeBSD Tips
·  *niX Forums

  man pages->OpenBSD man pages              
Title
Content
Arch
Section
 
 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.
 pthread_cond_init(3) -- create a condition variable
    The pthread_cond_init() function creates a new condition variable, with attributes specified with attr. If attr is NULL the default attributes are used.
 pthread_cond_signal(3) -- unblock a thread waiting for a condition variable
    The pthread_cond_signal() function unblocks one thread waiting for the condition variable cond.
 pthread_cond_timedwait(3) -- wait on a condition variable for a specific amount of time
    The pthread_cond_timedwait() function atomically blocks the current thread waiting on the condition variable specified by cond, and unblocks the mutex specified by mutex. The waiting thread unblocks o...
 pthread_cond_wait(3) -- wait on a condition variable
    The pthread_cond_wait() function atomically blocks the current thread waiting on the condition variable specified by cond, and unblocks the mutex specified by mutex. The waiting thread unblocks only a...
 pthread_create(3) -- create a new thread
    The pthread_create() function is used to create a new thread, with attributes specified by attr, within a process. If attr is NULL, the default attributes are used. If the attributes specified by attr...
 pthread_detach(3) -- detach a thread
    The pthread_detach() function is used to indicate to the implementation that storage for the thread thread can be reclaimed when the thread terminates. If thread has not terminated, pthread_detach() w...
 pthread_equal(3) -- compare thread IDs
    The pthread_equal() function compares the thread IDs t1 and t2.
 pthread_exit(3) -- terminate the calling thread
    The pthread_exit() function terminates the calling thread and makes the value value_ptr available to any successful join with the terminating thread. Any cancellation cleanup handlers that have been p...
 pthread_getconcurrency(3) -- get or set level of concurrency
    The pthread_getconcurrency() function allows an application to inform the threads implementation of its desired concurrency level, new_level. The actual level of concurrency provided by the implementa...
 pthread_getschedparam(3) -- thread scheduling parameter manipulation
    The pthread_setschedparam() and pthread_getschedparam() functions set and get the scheduling parameters of individual threads. The scheduling policy for a thread can either be SCHED_FIFO (first in, fi...
 pthread_getspecific(3) -- get a thread-specific data value
    The pthread_getspecific() function returns the value currently bound to the specified key on behalf of the calling thread. The effect of calling pthread_getspecific() with a key value not obtained fro...
<<  [Prev]  147  148  149  150  151  152  153  154  155  156  157  158  159  160  161  162  163  164  165  166  167  
168  169  170  171  172  173  174  175  176  177  178  179  180  181  182  183  184  185  186  187  [Next]  >>
Copyright © 2004-2005 DeniX Solutions SRL
newsletter delivery service