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

  man pages->OpenBSD man pages              
Title
Content
Arch
Section
 
 pthread_mutexattr_setpshared(3) -- mutex attribute operations
    Mutex attributes are used to specify parameters to pthread_mutex_init(). One attribute object can be used in multiple calls to pthread_mutex_init(), with or without modifications between calls. The pt...
 pthread_mutexattr_settype(3) -- mutex attribute operations
    Mutex attributes are used to specify parameters to pthread_mutex_init(). One attribute object can be used in multiple calls to pthread_mutex_init(), with or without modifications between calls. The pt...
 pthread_mutex_destroy(3) -- free resources allocated for a mutex
    The pthread_mutex_destroy() function frees the resources allocated for mutex.
 pthread_mutex_init(3) -- create a mutex
    The pthread_mutex_init() function creates a new mutex, with attributes specified with attr. If attr is NULL the default attributes are used.
 pthread_mutex_lock(3) -- lock a mutex
    The pthread_mutex_lock() function locks mutex. If the mutex is already locked, the calling thread will block until the mutex becomes available.
 pthread_mutex_trylock(3) -- attempt to lock a mutex without blocking
    The pthread_mutex_trylock() function locks mutex. If the mutex is already locked, pthread_mutex_trylock() will not block waiting for the mutex, but will return an error condition.
 pthread_mutex_unlock(3) -- unlock a mutex
    If the current thread holds the lock on mutex, then the pthread_mutex_unlock() function unlocks mutex.
 pthread_once(3) -- dynamic package initialization
    The first call to pthread_once() by any thread in a process, with a given once_control, will call the init_routine() with no arguments. Subsequent calls to pthread_once() with the same once_control wi...
 pthread_resume_all_np(3) -- suspend and resume thread(s)
    The pthread_suspend_np() function interrupts the given thread and places it in a suspended state. The pthread_suspend_all_np() function interrupts all threads except the current thread and places them...
 pthread_resume_np(3) -- suspend and resume thread(s)
    The pthread_suspend_np() function interrupts the given thread and places it in a suspended state. The pthread_suspend_all_np() function interrupts all threads except the current thread and places them...
 pthread_rwlockattr_destroy(3) -- destroy a read/write lock
    The pthread_rwlockattr_destroy() function is used to destroy a read/write lock attribute object previously created with pthread_rwlockattr_init().
 pthread_rwlockattr_getpshared(3) -- get the process shared attribute
    The pthread_rwlockattr_getpshared() function is used to get the process shared setting of a read/write lock attribute object. The setting is returned via pshared, and may be one of two values: PTHREAD...
 pthread_rwlockattr_init(3) -- initialize a read/write lock
    The pthread_rwlockattr_init() function is used to initialize a read/write lock attributes object.
 pthread_rwlockattr_setpshared(3) -- set the process shared attribute
    The pthread_rwlockattr_setpshared() function sets the process shared attribute of attr to the value referenced by pshared. pshared may be one of two values: PTHREAD_PROCESS_SHARED Any thread of any pr...
 pthread_rwlock_destroy(3) -- destroy a read/write lock
    The pthread_rwlock_destroy() function is used to destroy a read/write lock previously created with pthread_rwlock_init().
<<  [Prev]  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  188  189  [Next]  >>
Copyright © 2004-2005 DeniX Solutions SRL
newsletter delivery service