Lines Matching +full:3 +full:a
12 .\" 3. All advertising materials mentioning features or use of this software
21 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
42 POSIX threads are a set of functions that support applications with
45 within a process.
46 Multithreading is used to improve the performance of a
71 .Xr pthread_np 3 .
81 Creates a new thread of execution.
86 Cancels execution of a thread.
91 Marks a thread for deletion.
111 Delivers a signal to a specified thread.
136 Creates a cancellation point in the calling thread.
149 Destroy a thread attributes object.
156 Get the inherit scheduling attribute from a thread attributes object.
163 Get the scheduling parameter attribute from a thread attributes object.
168 Get the scheduling policy attribute from a thread attributes object.
173 Get the contention scope attribute from a thread attributes object.
178 Get the stack size attribute from a thread attributes object.
183 Get the stack address attribute from a thread attributes object.
188 Get the detach state attribute from a thread attributes object.
193 Initialize a thread attributes object with default values.
198 Set the inherit scheduling attribute in a thread attributes object.
205 Set the scheduling parameter attribute in a thread attributes object.
210 Set the scheduling policy attribute in a thread attributes object.
215 Set the contention scope attribute in a thread attributes object.
220 Set the stack size attribute in a thread attributes object.
225 Set the stack address attribute in a thread attributes object.
230 Set the detach state in a thread attributes object.
238 Destroy a mutex attributes object.
258 Initialize a mutex attributes object with default values.
273 Set the mutex type attribute that is used when a mutex is created.
278 Destroy a mutex.
285 Initialize a mutex with specified attributes.
290 Lock a mutex and block until it becomes available.
297 Lock a mutex and block until it becomes available or until the timeout expires.
302 Try to lock a mutex, but do not block if the mutex is locked by another thread,
308 Unlock a mutex.
316 Destroy a condition variable attributes object.
321 Initialize a condition variable attributes object with default values.
331 Destroy a condition variable.
336 Initialize a condition variable with specified attributes.
350 a condition, and then relock the mutex.
355 Unlock the specified mutex, wait for a condition, and relock the mutex.
363 Destroy a read/write lock object.
370 Initialize a read/write lock object.
375 Lock a read/write lock for reading, blocking until the lock can be
381 Attempt to lock a read/write lock for reading, without blocking if the
387 Attempt to lock a read/write lock for writing, without blocking if the
393 Unlock a read/write lock.
398 Lock a read/write lock for writing, blocking until the lock can be
404 Destroy a read/write lock attribute object.
417 Initialize a read/write lock attribute object.
430 Create a thread-specific data key.
435 Delete a thread-specific data key.
482 .Xr libthr 3 ,
483 .Xr pthread_atfork 3 ,
484 .Xr pthread_attr 3 ,
485 .Xr pthread_cancel 3 ,
486 .Xr pthread_cleanup_pop 3 ,
487 .Xr pthread_cleanup_push 3 ,
488 .Xr pthread_cond_broadcast 3 ,
489 .Xr pthread_cond_destroy 3 ,
490 .Xr pthread_cond_init 3 ,
491 .Xr pthread_cond_signal 3 ,
492 .Xr pthread_cond_timedwait 3 ,
493 .Xr pthread_cond_wait 3 ,
494 .Xr pthread_condattr_destroy 3 ,
495 .Xr pthread_condattr_init 3 ,
496 .Xr pthread_create 3 ,
497 .Xr pthread_detach 3 ,
498 .Xr pthread_equal 3 ,
499 .Xr pthread_exit 3 ,
500 .Xr pthread_getspecific 3 ,
501 .Xr pthread_join 3 ,
502 .Xr pthread_key_delete 3 ,
503 .Xr pthread_kill 3 ,
504 .Xr pthread_mutex_destroy 3 ,
505 .Xr pthread_mutex_init 3 ,
506 .Xr pthread_mutex_lock 3 ,
507 .Xr pthread_mutex_trylock 3 ,
508 .Xr pthread_mutex_unlock 3 ,
509 .Xr pthread_mutexattr_destroy 3 ,
510 .Xr pthread_mutexattr_getprioceiling 3 ,
511 .Xr pthread_mutexattr_getprotocol 3 ,
512 .Xr pthread_mutexattr_gettype 3 ,
513 .Xr pthread_mutexattr_init 3 ,
514 .Xr pthread_mutexattr_setprioceiling 3 ,
515 .Xr pthread_mutexattr_setprotocol 3 ,
516 .Xr pthread_mutexattr_settype 3 ,
517 .Xr pthread_np 3 ,
518 .Xr pthread_once 3 ,
519 .Xr pthread_rwlock_destroy 3 ,
520 .Xr pthread_rwlock_init 3 ,
521 .Xr pthread_rwlock_rdlock 3 ,
522 .Xr pthread_rwlock_unlock 3 ,
523 .Xr pthread_rwlock_wrlock 3 ,
524 .Xr pthread_rwlockattr_destroy 3 ,
525 .Xr pthread_rwlockattr_getpshared 3 ,
526 .Xr pthread_rwlockattr_init 3 ,
527 .Xr pthread_rwlockattr_setpshared 3 ,
528 .Xr pthread_self 3 ,
529 .Xr pthread_setcancelstate 3 ,
530 .Xr pthread_setcanceltype 3 ,
531 .Xr pthread_setspecific 3 ,
532 .Xr pthread_testcancel 3