diff --git a/share/man/man3/pthread.3 b/share/man/man3/pthread.3 index 165ac84f454..dff388630cf 100644 --- a/share/man/man3/pthread.3 +++ b/share/man/man3/pthread.3 @@ -30,7 +30,7 @@ .\" .\" $FreeBSD$ .\" -.Dd January 15, 2004 +.Dd October 19, 2007 .Dt PTHREAD 3 .Os .Sh NAME @@ -38,7 +38,6 @@ .Nd POSIX thread functions .Sh LIBRARY .Lb libpthread -.Lb libthr .Sh SYNOPSIS .In pthread.h .Sh DESCRIPTION @@ -467,13 +466,13 @@ stack and optionally invoke it. Push the specified cancellation cleanup handler onto the calling thread's cancellation stack. .El -.Sh INSTALLATION +.Sh IMPLEMENTATION NOTES The current .Fx POSIX thread implementation is built in two libraries, -.Lb libpthread , +.Lb libthr , and -.Lb libthr . +.Lb libkse . They contain both thread-safe versions of .Lb libc functions and the thread functions. diff --git a/share/man/man3/pthread_attr.3 b/share/man/man3/pthread_attr.3 index 286ce6127e7..3253b176cf0 100644 --- a/share/man/man3/pthread_attr.3 +++ b/share/man/man3/pthread_attr.3 @@ -53,7 +53,6 @@ .Nd thread attribute operations .Sh LIBRARY .Lb libpthread -.Lb libthr .Sh SYNOPSIS .In pthread.h .Ft int diff --git a/share/man/man3/pthread_attr_get_np.3 b/share/man/man3/pthread_attr_get_np.3 index 53db4d06e93..774be8f0287 100644 --- a/share/man/man3/pthread_attr_get_np.3 +++ b/share/man/man3/pthread_attr_get_np.3 @@ -32,7 +32,6 @@ .Nd get attributes of existent thread .Sh LIBRARY .Lb libpthread -.Lb libthr .Sh SYNOPSIS .In pthread_np.h .Ft int diff --git a/share/man/man3/pthread_attr_setcreatesuspend_np.3 b/share/man/man3/pthread_attr_setcreatesuspend_np.3 index 2e9d948c972..92c2fe0a705 100644 --- a/share/man/man3/pthread_attr_setcreatesuspend_np.3 +++ b/share/man/man3/pthread_attr_setcreatesuspend_np.3 @@ -32,7 +32,6 @@ .Nd prepare attribute for creation of suspended thread .Sh LIBRARY .Lb libpthread -.Lb libthr .Sh SYNOPSIS .In pthread_np.h .Ft int diff --git a/share/man/man3/pthread_barrier_destroy.3 b/share/man/man3/pthread_barrier_destroy.3 index 627e45d9127..34be9d0c793 100644 --- a/share/man/man3/pthread_barrier_destroy.3 +++ b/share/man/man3/pthread_barrier_destroy.3 @@ -32,7 +32,6 @@ .Nd "destroy, initialize or wait on a barrier object" .Sh LIBRARY .Lb libpthread -.Lb libthr .Sh SYNOPSIS .In pthread.h .Ft int @@ -77,7 +76,7 @@ argument to Once the threads have been released the barrier will be reset. .Sh IMPLEMENTATION NOTES In both -.Lb libpthread +.Lb libkse and .Lb libthr the @@ -150,7 +149,7 @@ The and .Fn pthread_barrier_wait functions first appeared in -.Lb libpthread +.Lb libkse in .Fx 5.2 , and in diff --git a/share/man/man3/pthread_barrierattr.3 b/share/man/man3/pthread_barrierattr.3 index cb9e6e29223..e314a0e6180 100644 --- a/share/man/man3/pthread_barrierattr.3 +++ b/share/man/man3/pthread_barrierattr.3 @@ -33,7 +33,6 @@ .Nd "manipulate a barrier attribute object" .Sh LIBRARY .Lb libpthread -.Lb libthr .Sh SYNOPSIS .In pthread.h .Ft int @@ -125,7 +124,7 @@ is not one of the allowed values. The .Fn pthread_barrierattr_* functions first appeared in -.Lb libpthread +.Lb libkse in .Fx 5.2 , and in @@ -140,7 +139,7 @@ does not fully conform to because the process-shared attribute is ignored in .Lb libthr , and in -.Lb libpthread ; +.Lb libkse ; if any value other than .Dv PTHREAD_PROCESSES_PRIVATE is specified in a call to diff --git a/share/man/man3/pthread_cancel.3 b/share/man/man3/pthread_cancel.3 index 6b8c60765ff..7ac5f9de2b0 100644 --- a/share/man/man3/pthread_cancel.3 +++ b/share/man/man3/pthread_cancel.3 @@ -7,7 +7,6 @@ .Nd cancel execution of a thread .Sh LIBRARY .Lb libpthread -.Lb libthr .Sh SYNOPSIS .In pthread.h .Ft int diff --git a/share/man/man3/pthread_cleanup_pop.3 b/share/man/man3/pthread_cleanup_pop.3 index 4cdb56f56f7..519e53f4ef4 100644 --- a/share/man/man3/pthread_cleanup_pop.3 +++ b/share/man/man3/pthread_cleanup_pop.3 @@ -35,7 +35,6 @@ .Nd call the first cleanup routine .Sh LIBRARY .Lb libpthread -.Lb libthr .Sh SYNOPSIS .In pthread.h .Ft void diff --git a/share/man/man3/pthread_cleanup_push.3 b/share/man/man3/pthread_cleanup_push.3 index a1259972b8f..27909877459 100644 --- a/share/man/man3/pthread_cleanup_push.3 +++ b/share/man/man3/pthread_cleanup_push.3 @@ -35,7 +35,6 @@ .Nd add a cleanup function for thread exit .Sh LIBRARY .Lb libpthread -.Lb libthr .Sh SYNOPSIS .In pthread.h .Ft void diff --git a/share/man/man3/pthread_cond_broadcast.3 b/share/man/man3/pthread_cond_broadcast.3 index ee4a0c37cfa..bbd274103ac 100644 --- a/share/man/man3/pthread_cond_broadcast.3 +++ b/share/man/man3/pthread_cond_broadcast.3 @@ -35,7 +35,6 @@ .Nd unblock all threads waiting for a condition variable .Sh LIBRARY .Lb libpthread -.Lb libthr .Sh SYNOPSIS .In pthread.h .Ft int diff --git a/share/man/man3/pthread_cond_destroy.3 b/share/man/man3/pthread_cond_destroy.3 index 40daf35c1dd..ca435ea76cf 100644 --- a/share/man/man3/pthread_cond_destroy.3 +++ b/share/man/man3/pthread_cond_destroy.3 @@ -35,7 +35,6 @@ .Nd destroy a condition variable .Sh LIBRARY .Lb libpthread -.Lb libthr .Sh SYNOPSIS .In pthread.h .Ft int diff --git a/share/man/man3/pthread_cond_init.3 b/share/man/man3/pthread_cond_init.3 index 474c4ce5b54..38843a76fe7 100644 --- a/share/man/man3/pthread_cond_init.3 +++ b/share/man/man3/pthread_cond_init.3 @@ -35,7 +35,6 @@ .Nd create a condition variable .Sh LIBRARY .Lb libpthread -.Lb libthr .Sh SYNOPSIS .In pthread.h .Ft int diff --git a/share/man/man3/pthread_cond_signal.3 b/share/man/man3/pthread_cond_signal.3 index 7dd3167a6f4..8ab801f9199 100644 --- a/share/man/man3/pthread_cond_signal.3 +++ b/share/man/man3/pthread_cond_signal.3 @@ -35,7 +35,6 @@ .Nd unblock a thread waiting for a condition variable .Sh LIBRARY .Lb libpthread -.Lb libthr .Sh SYNOPSIS .In pthread.h .Ft int diff --git a/share/man/man3/pthread_cond_timedwait.3 b/share/man/man3/pthread_cond_timedwait.3 index 49ad347a6f6..01625696289 100644 --- a/share/man/man3/pthread_cond_timedwait.3 +++ b/share/man/man3/pthread_cond_timedwait.3 @@ -35,7 +35,6 @@ .Nd "wait on a condition variable for a specific amount of time" .Sh LIBRARY .Lb libpthread -.Lb libthr .Sh SYNOPSIS .In pthread.h .Ft int diff --git a/share/man/man3/pthread_cond_wait.3 b/share/man/man3/pthread_cond_wait.3 index 88b7233b16b..07276037ed9 100644 --- a/share/man/man3/pthread_cond_wait.3 +++ b/share/man/man3/pthread_cond_wait.3 @@ -35,7 +35,6 @@ .Nd wait on a condition variable .Sh LIBRARY .Lb libpthread -.Lb libthr .Sh SYNOPSIS .In pthread.h .Ft int diff --git a/share/man/man3/pthread_condattr.3 b/share/man/man3/pthread_condattr.3 index 2b05eb6b7e1..bf28987c0aa 100644 --- a/share/man/man3/pthread_condattr.3 +++ b/share/man/man3/pthread_condattr.3 @@ -35,7 +35,6 @@ .Nd condition attribute operations .Sh LIBRARY .Lb libpthread -.Lb libthr .Sh SYNOPSIS .In pthread.h .Ft int diff --git a/share/man/man3/pthread_create.3 b/share/man/man3/pthread_create.3 index 526e8542fe6..277d157cfbf 100644 --- a/share/man/man3/pthread_create.3 +++ b/share/man/man3/pthread_create.3 @@ -38,7 +38,6 @@ .Nd create a new thread .Sh LIBRARY .Lb libpthread -.Lb libthr .Sh SYNOPSIS .In pthread.h .Ft int diff --git a/share/man/man3/pthread_detach.3 b/share/man/man3/pthread_detach.3 index 2943d6e0374..dba4aec433c 100644 --- a/share/man/man3/pthread_detach.3 +++ b/share/man/man3/pthread_detach.3 @@ -38,7 +38,6 @@ .Nd detach a thread .Sh LIBRARY .Lb libpthread -.Lb libthr .Sh SYNOPSIS .In pthread.h .Ft int diff --git a/share/man/man3/pthread_equal.3 b/share/man/man3/pthread_equal.3 index cd478f61ec7..1ed85319b96 100644 --- a/share/man/man3/pthread_equal.3 +++ b/share/man/man3/pthread_equal.3 @@ -38,7 +38,6 @@ .Nd compare thread IDs .Sh LIBRARY .Lb libpthread -.Lb libthr .Sh SYNOPSIS .In pthread.h .Ft int diff --git a/share/man/man3/pthread_exit.3 b/share/man/man3/pthread_exit.3 index fb5b2d6fe0d..d949f190ef1 100644 --- a/share/man/man3/pthread_exit.3 +++ b/share/man/man3/pthread_exit.3 @@ -38,7 +38,6 @@ .Nd terminate the calling thread .Sh LIBRARY .Lb libpthread -.Lb libthr .Sh SYNOPSIS .In pthread.h .Ft void diff --git a/share/man/man3/pthread_getconcurrency.3 b/share/man/man3/pthread_getconcurrency.3 index a7582dd9682..f442ea20b40 100644 --- a/share/man/man3/pthread_getconcurrency.3 +++ b/share/man/man3/pthread_getconcurrency.3 @@ -32,7 +32,6 @@ .Nd get or set level of concurrency .Sh LIBRARY .Lb libpthread -.Lb libthr .Sh SYNOPSIS .In pthread.h .Ft int diff --git a/share/man/man3/pthread_getspecific.3 b/share/man/man3/pthread_getspecific.3 index fa435e39f10..d59003f4e28 100644 --- a/share/man/man3/pthread_getspecific.3 +++ b/share/man/man3/pthread_getspecific.3 @@ -38,7 +38,6 @@ .Nd get a thread-specific data value .Sh LIBRARY .Lb libpthread -.Lb libthr .Sh SYNOPSIS .In pthread.h .Ft void * diff --git a/share/man/man3/pthread_join.3 b/share/man/man3/pthread_join.3 index 5727e4193b6..1aa593222b4 100644 --- a/share/man/man3/pthread_join.3 +++ b/share/man/man3/pthread_join.3 @@ -38,7 +38,6 @@ .Nd wait for thread termination .Sh LIBRARY .Lb libpthread -.Lb libthr .Sh SYNOPSIS .In pthread.h .Ft int diff --git a/share/man/man3/pthread_key_create.3 b/share/man/man3/pthread_key_create.3 index 380baabb855..a818e1a5236 100644 --- a/share/man/man3/pthread_key_create.3 +++ b/share/man/man3/pthread_key_create.3 @@ -38,7 +38,6 @@ .Nd thread-specific data key creation .Sh LIBRARY .Lb libpthread -.Lb libthr .Sh SYNOPSIS .In pthread.h .Ft int diff --git a/share/man/man3/pthread_key_delete.3 b/share/man/man3/pthread_key_delete.3 index 52af306ba69..c7861af50ce 100644 --- a/share/man/man3/pthread_key_delete.3 +++ b/share/man/man3/pthread_key_delete.3 @@ -38,7 +38,6 @@ .Nd delete a thread-specific data key .Sh LIBRARY .Lb libpthread -.Lb libthr .Sh SYNOPSIS .In pthread.h .Ft int diff --git a/share/man/man3/pthread_kill.3 b/share/man/man3/pthread_kill.3 index 9bc4bdae0e9..1ef879a2f76 100644 --- a/share/man/man3/pthread_kill.3 +++ b/share/man/man3/pthread_kill.3 @@ -34,7 +34,6 @@ .Nd send a signal to a specified thread .Sh LIBRARY .Lb libpthread -.Lb libthr .Sh SYNOPSIS .In pthread.h .In signal.h diff --git a/share/man/man3/pthread_main_np.3 b/share/man/man3/pthread_main_np.3 index 07c74b8b212..43d72920140 100644 --- a/share/man/man3/pthread_main_np.3 +++ b/share/man/man3/pthread_main_np.3 @@ -32,7 +32,6 @@ .Nd identify the initial thread .Sh LIBRARY .Lb libpthread -.Lb libthr .Sh SYNOPSIS .In pthread_np.h .Ft int diff --git a/share/man/man3/pthread_multi_np.3 b/share/man/man3/pthread_multi_np.3 index 81d8bdbff5f..9a42a99585b 100644 --- a/share/man/man3/pthread_multi_np.3 +++ b/share/man/man3/pthread_multi_np.3 @@ -33,7 +33,6 @@ .Nd "switch between multi- and single-threaded scheduling modes" .Sh LIBRARY .Lb libpthread -.Lb libthr .Sh SYNOPSIS .In pthread_np.h .Ft int diff --git a/share/man/man3/pthread_mutex_destroy.3 b/share/man/man3/pthread_mutex_destroy.3 index 7a1e7f5d9d6..d6c4bcd5e44 100644 --- a/share/man/man3/pthread_mutex_destroy.3 +++ b/share/man/man3/pthread_mutex_destroy.3 @@ -35,7 +35,6 @@ .Nd free resources allocated for a mutex .Sh LIBRARY .Lb libpthread -.Lb libthr .Sh SYNOPSIS .In pthread.h .Ft int diff --git a/share/man/man3/pthread_mutex_init.3 b/share/man/man3/pthread_mutex_init.3 index fd27d0a854f..10a026b9dcb 100644 --- a/share/man/man3/pthread_mutex_init.3 +++ b/share/man/man3/pthread_mutex_init.3 @@ -35,7 +35,6 @@ .Nd create a mutex .Sh LIBRARY .Lb libpthread -.Lb libthr .Sh SYNOPSIS .In pthread.h .Ft int diff --git a/share/man/man3/pthread_mutex_lock.3 b/share/man/man3/pthread_mutex_lock.3 index 208e18711dc..8479a69d3a0 100644 --- a/share/man/man3/pthread_mutex_lock.3 +++ b/share/man/man3/pthread_mutex_lock.3 @@ -35,7 +35,6 @@ .Nd lock a mutex .Sh LIBRARY .Lb libpthread -.Lb libthr .Sh SYNOPSIS .In pthread.h .Ft int diff --git a/share/man/man3/pthread_mutex_timedlock.3 b/share/man/man3/pthread_mutex_timedlock.3 index a42b1585875..abc7e2a2885 100644 --- a/share/man/man3/pthread_mutex_timedlock.3 +++ b/share/man/man3/pthread_mutex_timedlock.3 @@ -32,7 +32,6 @@ .Nd lock a mutex without blocking indefinitely .Sh LIBRARY .Lb libpthread -.Lb libthr .Sh SYNOPSIS .In pthread.h .In time.h diff --git a/share/man/man3/pthread_mutex_trylock.3 b/share/man/man3/pthread_mutex_trylock.3 index eaff63a476f..049006f916f 100644 --- a/share/man/man3/pthread_mutex_trylock.3 +++ b/share/man/man3/pthread_mutex_trylock.3 @@ -35,7 +35,6 @@ .Nd attempt to lock a mutex without blocking .Sh LIBRARY .Lb libpthread -.Lb libthr .Sh SYNOPSIS .In pthread.h .Ft int diff --git a/share/man/man3/pthread_mutex_unlock.3 b/share/man/man3/pthread_mutex_unlock.3 index ae6944c1a7e..77784e1b196 100644 --- a/share/man/man3/pthread_mutex_unlock.3 +++ b/share/man/man3/pthread_mutex_unlock.3 @@ -35,7 +35,6 @@ .Nd unlock a mutex .Sh LIBRARY .Lb libpthread -.Lb libthr .Sh SYNOPSIS .In pthread.h .Ft int diff --git a/share/man/man3/pthread_mutexattr.3 b/share/man/man3/pthread_mutexattr.3 index 786fabdae9f..f97602615be 100644 --- a/share/man/man3/pthread_mutexattr.3 +++ b/share/man/man3/pthread_mutexattr.3 @@ -41,7 +41,6 @@ .Nd mutex attribute operations .Sh LIBRARY .Lb libpthread -.Lb libthr .Sh SYNOPSIS .In pthread.h .Ft int diff --git a/share/man/man3/pthread_mutexattr_getkind_np.3 b/share/man/man3/pthread_mutexattr_getkind_np.3 index a7e63a56d33..548045b5aac 100644 --- a/share/man/man3/pthread_mutexattr_getkind_np.3 +++ b/share/man/man3/pthread_mutexattr_getkind_np.3 @@ -33,7 +33,6 @@ .Nd mutex attribute operations (legacy) .Sh LIBRARY .Lb libpthread -.Lb libthr .Sh SYNOPSIS .In pthread_np.h .Ft int diff --git a/share/man/man3/pthread_once.3 b/share/man/man3/pthread_once.3 index 056daababd3..fe234187730 100644 --- a/share/man/man3/pthread_once.3 +++ b/share/man/man3/pthread_once.3 @@ -38,7 +38,6 @@ .Nd dynamic package initialization .Sh LIBRARY .Lb libpthread -.Lb libthr .Sh SYNOPSIS .In pthread.h .Pp diff --git a/share/man/man3/pthread_resume_all_np.3 b/share/man/man3/pthread_resume_all_np.3 index 2a477af71c0..4c63c3bf4c3 100644 --- a/share/man/man3/pthread_resume_all_np.3 +++ b/share/man/man3/pthread_resume_all_np.3 @@ -32,7 +32,6 @@ .Nd resume all suspended threads .Sh LIBRARY .Lb libpthread -.Lb libthr .Sh SYNOPSIS .In pthread_np.h .Ft void diff --git a/share/man/man3/pthread_resume_np.3 b/share/man/man3/pthread_resume_np.3 index f0ed759ee6f..08f7cb96f10 100644 --- a/share/man/man3/pthread_resume_np.3 +++ b/share/man/man3/pthread_resume_np.3 @@ -32,7 +32,6 @@ .Nd resume suspended thread .Sh LIBRARY .Lb libpthread -.Lb libthr .Sh SYNOPSIS .In pthread_np.h .Ft int diff --git a/share/man/man3/pthread_rwlock_destroy.3 b/share/man/man3/pthread_rwlock_destroy.3 index 1da04eef35e..0129222866b 100644 --- a/share/man/man3/pthread_rwlock_destroy.3 +++ b/share/man/man3/pthread_rwlock_destroy.3 @@ -32,7 +32,6 @@ .Nd destroy a read/write lock .Sh LIBRARY .Lb libpthread -.Lb libthr .Sh SYNOPSIS .In pthread.h .Ft int diff --git a/share/man/man3/pthread_rwlock_init.3 b/share/man/man3/pthread_rwlock_init.3 index 51dba4657c5..cf8cc7e10ed 100644 --- a/share/man/man3/pthread_rwlock_init.3 +++ b/share/man/man3/pthread_rwlock_init.3 @@ -32,7 +32,6 @@ .Nd initialize a read/write lock .Sh LIBRARY .Lb libpthread -.Lb libthr .Sh SYNOPSIS .In pthread.h .Ft int diff --git a/share/man/man3/pthread_rwlock_rdlock.3 b/share/man/man3/pthread_rwlock_rdlock.3 index a9475a2dd43..7a197f210ba 100644 --- a/share/man/man3/pthread_rwlock_rdlock.3 +++ b/share/man/man3/pthread_rwlock_rdlock.3 @@ -33,7 +33,6 @@ .Nd acquire a read/write lock for reading .Sh LIBRARY .Lb libpthread -.Lb libthr .Sh SYNOPSIS .In pthread.h .Ft int diff --git a/share/man/man3/pthread_rwlock_timedrdlock.3 b/share/man/man3/pthread_rwlock_timedrdlock.3 index 752c7754de5..78b74700ce7 100644 --- a/share/man/man3/pthread_rwlock_timedrdlock.3 +++ b/share/man/man3/pthread_rwlock_timedrdlock.3 @@ -32,7 +32,6 @@ .Nd "acquire a read-write lock for reading or give up after a specified period" .Sh LIBRARY .Lb libpthread -.Lb libthr .Sh SYNOPSIS .In pthread.h .Ft int diff --git a/share/man/man3/pthread_rwlock_timedwrlock.3 b/share/man/man3/pthread_rwlock_timedwrlock.3 index ff0e167a7dd..9821c5b40bc 100644 --- a/share/man/man3/pthread_rwlock_timedwrlock.3 +++ b/share/man/man3/pthread_rwlock_timedwrlock.3 @@ -32,7 +32,6 @@ .Nd "acquire a read-write lock for writing or give up after a specified period" .Sh LIBRARY .Lb libpthread -.Lb libthr .Sh SYNOPSIS .In pthread.h .Ft int diff --git a/share/man/man3/pthread_rwlock_unlock.3 b/share/man/man3/pthread_rwlock_unlock.3 index 38d386b7eac..8ad891ea454 100644 --- a/share/man/man3/pthread_rwlock_unlock.3 +++ b/share/man/man3/pthread_rwlock_unlock.3 @@ -32,7 +32,6 @@ .Nd release a read/write lock .Sh LIBRARY .Lb libpthread -.Lb libthr .Sh SYNOPSIS .In pthread.h .Ft int diff --git a/share/man/man3/pthread_rwlock_wrlock.3 b/share/man/man3/pthread_rwlock_wrlock.3 index 12d043fc796..602b54fd029 100644 --- a/share/man/man3/pthread_rwlock_wrlock.3 +++ b/share/man/man3/pthread_rwlock_wrlock.3 @@ -33,7 +33,6 @@ .Nd acquire a read/write lock for writing .Sh LIBRARY .Lb libpthread -.Lb libthr .Sh SYNOPSIS .In pthread.h .Ft int diff --git a/share/man/man3/pthread_rwlockattr_destroy.3 b/share/man/man3/pthread_rwlockattr_destroy.3 index 090463f7b31..bff808fdbbd 100644 --- a/share/man/man3/pthread_rwlockattr_destroy.3 +++ b/share/man/man3/pthread_rwlockattr_destroy.3 @@ -32,7 +32,6 @@ .Nd destroy a read/write lock .Sh LIBRARY .Lb libpthread -.Lb libthr .Sh SYNOPSIS .In pthread.h .Ft int diff --git a/share/man/man3/pthread_rwlockattr_getpshared.3 b/share/man/man3/pthread_rwlockattr_getpshared.3 index a341d90ec57..3fe5de1ae0a 100644 --- a/share/man/man3/pthread_rwlockattr_getpshared.3 +++ b/share/man/man3/pthread_rwlockattr_getpshared.3 @@ -32,7 +32,6 @@ .Nd get the process shared attribute .Sh LIBRARY .Lb libpthread -.Lb libthr .Sh SYNOPSIS .In pthread.h .Ft int diff --git a/share/man/man3/pthread_rwlockattr_init.3 b/share/man/man3/pthread_rwlockattr_init.3 index ab059bd6332..54d319ff84e 100644 --- a/share/man/man3/pthread_rwlockattr_init.3 +++ b/share/man/man3/pthread_rwlockattr_init.3 @@ -32,7 +32,6 @@ .Nd initialize a read/write lock .Sh LIBRARY .Lb libpthread -.Lb libthr .Sh SYNOPSIS .In pthread.h .Ft int diff --git a/share/man/man3/pthread_rwlockattr_setpshared.3 b/share/man/man3/pthread_rwlockattr_setpshared.3 index 83ab1da7ffb..36bcc690f46 100644 --- a/share/man/man3/pthread_rwlockattr_setpshared.3 +++ b/share/man/man3/pthread_rwlockattr_setpshared.3 @@ -32,7 +32,6 @@ .Nd set the process shared attribute .Sh LIBRARY .Lb libpthread -.Lb libthr .Sh SYNOPSIS .In pthread.h .Ft int diff --git a/share/man/man3/pthread_schedparam.3 b/share/man/man3/pthread_schedparam.3 index ff73a85d7ec..52d72cc1dd9 100644 --- a/share/man/man3/pthread_schedparam.3 +++ b/share/man/man3/pthread_schedparam.3 @@ -36,7 +36,6 @@ .Nd thread scheduling parameter manipulation .Sh LIBRARY .Lb libpthread -.Lb libthr .Sh SYNOPSIS .In pthread.h .Ft int diff --git a/share/man/man3/pthread_self.3 b/share/man/man3/pthread_self.3 index 30de98bcbe7..4d6aa2bffd2 100644 --- a/share/man/man3/pthread_self.3 +++ b/share/man/man3/pthread_self.3 @@ -38,7 +38,6 @@ .Nd get the calling thread's ID .Sh LIBRARY .Lb libpthread -.Lb libthr .Sh SYNOPSIS .In pthread.h .Ft pthread_t diff --git a/share/man/man3/pthread_set_name_np.3 b/share/man/man3/pthread_set_name_np.3 index d50a0b18369..3bf430afaca 100644 --- a/share/man/man3/pthread_set_name_np.3 +++ b/share/man/man3/pthread_set_name_np.3 @@ -32,7 +32,6 @@ .Nd set the thread name .Sh LIBRARY .Lb libpthread -.Lb libthr .Sh SYNOPSIS .In pthread_np.h .Ft void diff --git a/share/man/man3/pthread_setspecific.3 b/share/man/man3/pthread_setspecific.3 index ae66ae10be9..1ea3002d43a 100644 --- a/share/man/man3/pthread_setspecific.3 +++ b/share/man/man3/pthread_setspecific.3 @@ -38,7 +38,6 @@ .Nd set a thread-specific data value .Sh LIBRARY .Lb libpthread -.Lb libthr .Sh SYNOPSIS .In pthread.h .Ft int diff --git a/share/man/man3/pthread_sigmask.3 b/share/man/man3/pthread_sigmask.3 index b486dc00779..c4125430d96 100644 --- a/share/man/man3/pthread_sigmask.3 +++ b/share/man/man3/pthread_sigmask.3 @@ -34,7 +34,6 @@ .Nd examine and/or change a thread's signal mask .Sh LIBRARY .Lb libpthread -.Lb libthr .Sh SYNOPSIS .In pthread.h .In signal.h diff --git a/share/man/man3/pthread_spin_init.3 b/share/man/man3/pthread_spin_init.3 index 884753dc96a..1f76de1bf6a 100644 --- a/share/man/man3/pthread_spin_init.3 +++ b/share/man/man3/pthread_spin_init.3 @@ -32,7 +32,6 @@ .Nd "initialize or destroy a spin lock" .Sh LIBRARY .Lb libpthread -.Lb libthr .Sh SYNOPSIS .In pthread.h .Ft int @@ -115,7 +114,7 @@ The and .Fn pthread_spin_destroy functions first appeared in -.Lb libpthread +.Lb libkse in .Fx 5.2 , and in @@ -132,7 +131,7 @@ because the argument is ignored in .Lb libthr , and in -.Lb libpthread +.Lb libkse if any value other than .Dv PTHREAD_PROCESSES_PRIVATE is specified, it returns diff --git a/share/man/man3/pthread_spin_lock.3 b/share/man/man3/pthread_spin_lock.3 index 0f8c5c2b8c4..24dea92d239 100644 --- a/share/man/man3/pthread_spin_lock.3 +++ b/share/man/man3/pthread_spin_lock.3 @@ -32,7 +32,6 @@ .Nd "lock or unlock a spin lock" .Sh LIBRARY .Lb libpthread -.Lb libthr .Sh SYNOPSIS .In pthread.h .Ft int @@ -122,7 +121,7 @@ The and .Fn pthread_spin_unlock functions first appeared in -.Lb libpthread +.Lb libkse in .Fx 5.2 , and in diff --git a/share/man/man3/pthread_switch_add_np.3 b/share/man/man3/pthread_switch_add_np.3 index 3687ab9083b..0c420727184 100644 --- a/share/man/man3/pthread_switch_add_np.3 +++ b/share/man/man3/pthread_switch_add_np.3 @@ -33,7 +33,6 @@ .Nd thread context switches debugging primitives .Sh LIBRARY .Lb libpthread -.Lb libthr .Sh SYNOPSIS .In pthread_np.h .Ft int diff --git a/share/man/man3/pthread_testcancel.3 b/share/man/man3/pthread_testcancel.3 index 4907e6b72d4..7a73cb9edcb 100644 --- a/share/man/man3/pthread_testcancel.3 +++ b/share/man/man3/pthread_testcancel.3 @@ -9,7 +9,6 @@ .Nd set cancelability state .Sh LIBRARY .Lb libpthread -.Lb libthr .Sh SYNOPSIS .In pthread.h .Ft int diff --git a/share/man/man3/pthread_yield.3 b/share/man/man3/pthread_yield.3 index 28f6452ac8b..e47c033acfb 100644 --- a/share/man/man3/pthread_yield.3 +++ b/share/man/man3/pthread_yield.3 @@ -12,7 +12,6 @@ .Nd yield control of the current thread .Sh LIBRARY .Lb libpthread -.Lb libthr .Sh SYNOPSIS .In pthread.h .Ft void