From 610da16028f13b18d2b6c6f1e661ded7a925a044 Mon Sep 17 00:00:00 2001 From: Sascha Wildner Date: Wed, 15 Apr 2009 13:07:13 +0200 Subject: [PATCH] Move pthread* manpages to lib/libpthread as they are not libc_r specific. --- lib/libc_r/Makefile | 1 - .../man/Makefile.inc => libpthread/Makefile} | 25 ++++++++++++++++++---- lib/{libc_r/man => libpthread}/pthread_attr.3 | 0 .../man => libpthread}/pthread_attr_get_np.3 | 0 .../pthread_attr_setcreatesuspend_np.3 | 0 lib/{libc_r/man => libpthread}/pthread_cancel.3 | 0 .../man => libpthread}/pthread_cleanup_pop.3 | 0 .../man => libpthread}/pthread_cleanup_push.3 | 0 .../man => libpthread}/pthread_cond_broadcast.3 | 0 .../man => libpthread}/pthread_cond_destroy.3 | 0 lib/{libc_r/man => libpthread}/pthread_cond_init.3 | 0 .../man => libpthread}/pthread_cond_signal.3 | 0 .../man => libpthread}/pthread_cond_timedwait.3 | 0 lib/{libc_r/man => libpthread}/pthread_cond_wait.3 | 0 lib/{libc_r/man => libpthread}/pthread_condattr.3 | 0 lib/{libc_r/man => libpthread}/pthread_create.3 | 0 lib/{libc_r/man => libpthread}/pthread_detach.3 | 0 lib/{libc_r/man => libpthread}/pthread_equal.3 | 0 lib/{libc_r/man => libpthread}/pthread_exit.3 | 0 .../man => libpthread}/pthread_getconcurrency.3 | 0 .../man => libpthread}/pthread_getspecific.3 | 0 lib/{libc_r/man => libpthread}/pthread_join.3 | 0 .../man => libpthread}/pthread_key_create.3 | 0 .../man => libpthread}/pthread_key_delete.3 | 0 lib/{libc_r/man => libpthread}/pthread_kill.3 | 0 lib/{libc_r/man => libpthread}/pthread_main_np.3 | 0 lib/{libc_r/man => libpthread}/pthread_multi_np.3 | 0 .../man => libpthread}/pthread_mutex_destroy.3 | 0 .../man => libpthread}/pthread_mutex_init.3 | 0 .../man => libpthread}/pthread_mutex_lock.3 | 0 .../man => libpthread}/pthread_mutex_trylock.3 | 0 .../man => libpthread}/pthread_mutex_unlock.3 | 0 lib/{libc_r/man => libpthread}/pthread_mutexattr.3 | 0 .../pthread_mutexattr_getkind_np.3 | 0 lib/{libc_r/man => libpthread}/pthread_once.3 | 0 .../man => libpthread}/pthread_resume_all_np.3 | 0 lib/{libc_r/man => libpthread}/pthread_resume_np.3 | 0 .../man => libpthread}/pthread_rwlock_destroy.3 | 0 .../man => libpthread}/pthread_rwlock_init.3 | 0 .../man => libpthread}/pthread_rwlock_rdlock.3 | 0 .../man => libpthread}/pthread_rwlock_unlock.3 | 0 .../man => libpthread}/pthread_rwlock_wrlock.3 | 0 .../pthread_rwlockattr_destroy.3 | 0 .../pthread_rwlockattr_getpshared.3 | 0 .../man => libpthread}/pthread_rwlockattr_init.3 | 0 .../pthread_rwlockattr_setpshared.3 | 0 .../man => libpthread}/pthread_schedparam.3 | 0 lib/{libc_r/man => libpthread}/pthread_self.3 | 0 .../man => libpthread}/pthread_set_name_np.3 | 0 .../man => libpthread}/pthread_setspecific.3 | 0 lib/{libc_r/man => libpthread}/pthread_sigmask.3 | 0 .../man => libpthread}/pthread_suspend_all_np.3 | 0 .../man => libpthread}/pthread_suspend_np.3 | 0 .../man => libpthread}/pthread_switch_add_np.3 | 0 .../man => libpthread}/pthread_testcancel.3 | 0 lib/{libc_r/man => libpthread}/sem_destroy.3 | 0 lib/{libc_r/man => libpthread}/sem_getvalue.3 | 0 lib/{libc_r/man => libpthread}/sem_init.3 | 0 lib/{libc_r/man => libpthread}/sem_open.3 | 0 lib/{libc_r/man => libpthread}/sem_post.3 | 0 lib/{libc_r/man => libpthread}/sem_wait.3 | 0 lib/{libc_r/man => libpthread}/sigwait.3 | 0 62 files changed, 21 insertions(+), 5 deletions(-) rename lib/{libc_r/man/Makefile.inc => libpthread/Makefile} (84%) rename lib/{libc_r/man => libpthread}/pthread_attr.3 (100%) rename lib/{libc_r/man => libpthread}/pthread_attr_get_np.3 (100%) rename lib/{libc_r/man => libpthread}/pthread_attr_setcreatesuspend_np.3 (100%) rename lib/{libc_r/man => libpthread}/pthread_cancel.3 (100%) rename lib/{libc_r/man => libpthread}/pthread_cleanup_pop.3 (100%) rename lib/{libc_r/man => libpthread}/pthread_cleanup_push.3 (100%) rename lib/{libc_r/man => libpthread}/pthread_cond_broadcast.3 (100%) rename lib/{libc_r/man => libpthread}/pthread_cond_destroy.3 (100%) rename lib/{libc_r/man => libpthread}/pthread_cond_init.3 (100%) rename lib/{libc_r/man => libpthread}/pthread_cond_signal.3 (100%) rename lib/{libc_r/man => libpthread}/pthread_cond_timedwait.3 (100%) rename lib/{libc_r/man => libpthread}/pthread_cond_wait.3 (100%) rename lib/{libc_r/man => libpthread}/pthread_condattr.3 (100%) rename lib/{libc_r/man => libpthread}/pthread_create.3 (100%) rename lib/{libc_r/man => libpthread}/pthread_detach.3 (100%) rename lib/{libc_r/man => libpthread}/pthread_equal.3 (100%) rename lib/{libc_r/man => libpthread}/pthread_exit.3 (100%) rename lib/{libc_r/man => libpthread}/pthread_getconcurrency.3 (100%) rename lib/{libc_r/man => libpthread}/pthread_getspecific.3 (100%) rename lib/{libc_r/man => libpthread}/pthread_join.3 (100%) rename lib/{libc_r/man => libpthread}/pthread_key_create.3 (100%) rename lib/{libc_r/man => libpthread}/pthread_key_delete.3 (100%) rename lib/{libc_r/man => libpthread}/pthread_kill.3 (100%) rename lib/{libc_r/man => libpthread}/pthread_main_np.3 (100%) rename lib/{libc_r/man => libpthread}/pthread_multi_np.3 (100%) rename lib/{libc_r/man => libpthread}/pthread_mutex_destroy.3 (100%) rename lib/{libc_r/man => libpthread}/pthread_mutex_init.3 (100%) rename lib/{libc_r/man => libpthread}/pthread_mutex_lock.3 (100%) rename lib/{libc_r/man => libpthread}/pthread_mutex_trylock.3 (100%) rename lib/{libc_r/man => libpthread}/pthread_mutex_unlock.3 (100%) rename lib/{libc_r/man => libpthread}/pthread_mutexattr.3 (100%) rename lib/{libc_r/man => libpthread}/pthread_mutexattr_getkind_np.3 (100%) rename lib/{libc_r/man => libpthread}/pthread_once.3 (100%) rename lib/{libc_r/man => libpthread}/pthread_resume_all_np.3 (100%) rename lib/{libc_r/man => libpthread}/pthread_resume_np.3 (100%) rename lib/{libc_r/man => libpthread}/pthread_rwlock_destroy.3 (100%) rename lib/{libc_r/man => libpthread}/pthread_rwlock_init.3 (100%) rename lib/{libc_r/man => libpthread}/pthread_rwlock_rdlock.3 (100%) rename lib/{libc_r/man => libpthread}/pthread_rwlock_unlock.3 (100%) rename lib/{libc_r/man => libpthread}/pthread_rwlock_wrlock.3 (100%) rename lib/{libc_r/man => libpthread}/pthread_rwlockattr_destroy.3 (100%) rename lib/{libc_r/man => libpthread}/pthread_rwlockattr_getpshared.3 (100%) rename lib/{libc_r/man => libpthread}/pthread_rwlockattr_init.3 (100%) rename lib/{libc_r/man => libpthread}/pthread_rwlockattr_setpshared.3 (100%) rename lib/{libc_r/man => libpthread}/pthread_schedparam.3 (100%) rename lib/{libc_r/man => libpthread}/pthread_self.3 (100%) rename lib/{libc_r/man => libpthread}/pthread_set_name_np.3 (100%) rename lib/{libc_r/man => libpthread}/pthread_setspecific.3 (100%) rename lib/{libc_r/man => libpthread}/pthread_sigmask.3 (100%) rename lib/{libc_r/man => libpthread}/pthread_suspend_all_np.3 (100%) rename lib/{libc_r/man => libpthread}/pthread_suspend_np.3 (100%) rename lib/{libc_r/man => libpthread}/pthread_switch_add_np.3 (100%) rename lib/{libc_r/man => libpthread}/pthread_testcancel.3 (100%) rename lib/{libc_r/man => libpthread}/sem_destroy.3 (100%) rename lib/{libc_r/man => libpthread}/sem_getvalue.3 (100%) rename lib/{libc_r/man => libpthread}/sem_init.3 (100%) rename lib/{libc_r/man => libpthread}/sem_open.3 (100%) rename lib/{libc_r/man => libpthread}/sem_post.3 (100%) rename lib/{libc_r/man => libpthread}/sem_wait.3 (100%) rename lib/{libc_r/man => libpthread}/sigwait.3 (100%) diff --git a/lib/libc_r/Makefile b/lib/libc_r/Makefile index d938a4727d..7360427c11 100644 --- a/lib/libc_r/Makefile +++ b/lib/libc_r/Makefile @@ -22,7 +22,6 @@ CFLAGS+=-D_PTHREADS_INVARIANTS AINC= -I${.CURDIR}/../libc/${MACHINE_ARCH} -I${.CURDIR}/uthread PRECIOUSLIB= yes -.include "${.CURDIR}/man/Makefile.inc" .include "${.CURDIR}/uthread/Makefile.inc" .include "${.CURDIR}/sys/Makefile.inc" diff --git a/lib/libc_r/man/Makefile.inc b/lib/libpthread/Makefile similarity index 84% rename from lib/libc_r/man/Makefile.inc rename to lib/libpthread/Makefile index a7624a18b8..13a33eca92 100644 --- a/lib/libc_r/man/Makefile.inc +++ b/lib/libpthread/Makefile @@ -1,9 +1,12 @@ -# $FreeBSD: src/lib/libc_r/man/Makefile.inc,v 1.11.2.5 2003/05/27 18:18:01 jdp Exp $ -# $DragonFly: src/lib/libc_r/man/Makefile.inc,v 1.3 2005/08/05 23:43:19 swildner Exp $ +# $DragonFly: src/lib/libpthread/Makefile,v 1.6 2008/01/20 19:14:09 corecode Exp $ -# POSIX thread man files +LIBNAME= libpthread +SHLIB_MAJOR= 0 +SHLIB_NAME= ${LIBNAME}.so +SONAME= ${SHLIB_NAME}.${SHLIB_MAJOR} -.PATH: ${.CURDIR}/man +SRCS= dummy.c +WARNS?= 6 MAN+= pthread_attr.3 \ pthread_attr_get_np.3 \ @@ -108,3 +111,17 @@ MLINKS+= \ sem_open.3 sem_close.3 \ sem_open.3 sem_unlink.3 \ sem_wait.3 sem_trywait.3 + +realinstall: linkinstall +linkinstall: + # Do not overwrite existing symlinks + if [ ! -e ${DESTDIR}${TARGET_SHLIBDIR}/${SONAME} ]; then \ + ${LN} -fs lib${THREAD_LIB}.so \ + ${DESTDIR}${TARGET_SHLIBDIR}/${SONAME}; \ + fi + if [ ! -e ${DESTDIR}${TARGET_LIBDIR}/${LIBNAME}.a ]; then \ + ${LN} -fs lib${THREAD_LIB}.a \ + ${DESTDIR}${TARGET_LIBDIR}/${LIBNAME}.a; \ + fi + +.include diff --git a/lib/libc_r/man/pthread_attr.3 b/lib/libpthread/pthread_attr.3 similarity index 100% rename from lib/libc_r/man/pthread_attr.3 rename to lib/libpthread/pthread_attr.3 diff --git a/lib/libc_r/man/pthread_attr_get_np.3 b/lib/libpthread/pthread_attr_get_np.3 similarity index 100% rename from lib/libc_r/man/pthread_attr_get_np.3 rename to lib/libpthread/pthread_attr_get_np.3 diff --git a/lib/libc_r/man/pthread_attr_setcreatesuspend_np.3 b/lib/libpthread/pthread_attr_setcreatesuspend_np.3 similarity index 100% rename from lib/libc_r/man/pthread_attr_setcreatesuspend_np.3 rename to lib/libpthread/pthread_attr_setcreatesuspend_np.3 diff --git a/lib/libc_r/man/pthread_cancel.3 b/lib/libpthread/pthread_cancel.3 similarity index 100% rename from lib/libc_r/man/pthread_cancel.3 rename to lib/libpthread/pthread_cancel.3 diff --git a/lib/libc_r/man/pthread_cleanup_pop.3 b/lib/libpthread/pthread_cleanup_pop.3 similarity index 100% rename from lib/libc_r/man/pthread_cleanup_pop.3 rename to lib/libpthread/pthread_cleanup_pop.3 diff --git a/lib/libc_r/man/pthread_cleanup_push.3 b/lib/libpthread/pthread_cleanup_push.3 similarity index 100% rename from lib/libc_r/man/pthread_cleanup_push.3 rename to lib/libpthread/pthread_cleanup_push.3 diff --git a/lib/libc_r/man/pthread_cond_broadcast.3 b/lib/libpthread/pthread_cond_broadcast.3 similarity index 100% rename from lib/libc_r/man/pthread_cond_broadcast.3 rename to lib/libpthread/pthread_cond_broadcast.3 diff --git a/lib/libc_r/man/pthread_cond_destroy.3 b/lib/libpthread/pthread_cond_destroy.3 similarity index 100% rename from lib/libc_r/man/pthread_cond_destroy.3 rename to lib/libpthread/pthread_cond_destroy.3 diff --git a/lib/libc_r/man/pthread_cond_init.3 b/lib/libpthread/pthread_cond_init.3 similarity index 100% rename from lib/libc_r/man/pthread_cond_init.3 rename to lib/libpthread/pthread_cond_init.3 diff --git a/lib/libc_r/man/pthread_cond_signal.3 b/lib/libpthread/pthread_cond_signal.3 similarity index 100% rename from lib/libc_r/man/pthread_cond_signal.3 rename to lib/libpthread/pthread_cond_signal.3 diff --git a/lib/libc_r/man/pthread_cond_timedwait.3 b/lib/libpthread/pthread_cond_timedwait.3 similarity index 100% rename from lib/libc_r/man/pthread_cond_timedwait.3 rename to lib/libpthread/pthread_cond_timedwait.3 diff --git a/lib/libc_r/man/pthread_cond_wait.3 b/lib/libpthread/pthread_cond_wait.3 similarity index 100% rename from lib/libc_r/man/pthread_cond_wait.3 rename to lib/libpthread/pthread_cond_wait.3 diff --git a/lib/libc_r/man/pthread_condattr.3 b/lib/libpthread/pthread_condattr.3 similarity index 100% rename from lib/libc_r/man/pthread_condattr.3 rename to lib/libpthread/pthread_condattr.3 diff --git a/lib/libc_r/man/pthread_create.3 b/lib/libpthread/pthread_create.3 similarity index 100% rename from lib/libc_r/man/pthread_create.3 rename to lib/libpthread/pthread_create.3 diff --git a/lib/libc_r/man/pthread_detach.3 b/lib/libpthread/pthread_detach.3 similarity index 100% rename from lib/libc_r/man/pthread_detach.3 rename to lib/libpthread/pthread_detach.3 diff --git a/lib/libc_r/man/pthread_equal.3 b/lib/libpthread/pthread_equal.3 similarity index 100% rename from lib/libc_r/man/pthread_equal.3 rename to lib/libpthread/pthread_equal.3 diff --git a/lib/libc_r/man/pthread_exit.3 b/lib/libpthread/pthread_exit.3 similarity index 100% rename from lib/libc_r/man/pthread_exit.3 rename to lib/libpthread/pthread_exit.3 diff --git a/lib/libc_r/man/pthread_getconcurrency.3 b/lib/libpthread/pthread_getconcurrency.3 similarity index 100% rename from lib/libc_r/man/pthread_getconcurrency.3 rename to lib/libpthread/pthread_getconcurrency.3 diff --git a/lib/libc_r/man/pthread_getspecific.3 b/lib/libpthread/pthread_getspecific.3 similarity index 100% rename from lib/libc_r/man/pthread_getspecific.3 rename to lib/libpthread/pthread_getspecific.3 diff --git a/lib/libc_r/man/pthread_join.3 b/lib/libpthread/pthread_join.3 similarity index 100% rename from lib/libc_r/man/pthread_join.3 rename to lib/libpthread/pthread_join.3 diff --git a/lib/libc_r/man/pthread_key_create.3 b/lib/libpthread/pthread_key_create.3 similarity index 100% rename from lib/libc_r/man/pthread_key_create.3 rename to lib/libpthread/pthread_key_create.3 diff --git a/lib/libc_r/man/pthread_key_delete.3 b/lib/libpthread/pthread_key_delete.3 similarity index 100% rename from lib/libc_r/man/pthread_key_delete.3 rename to lib/libpthread/pthread_key_delete.3 diff --git a/lib/libc_r/man/pthread_kill.3 b/lib/libpthread/pthread_kill.3 similarity index 100% rename from lib/libc_r/man/pthread_kill.3 rename to lib/libpthread/pthread_kill.3 diff --git a/lib/libc_r/man/pthread_main_np.3 b/lib/libpthread/pthread_main_np.3 similarity index 100% rename from lib/libc_r/man/pthread_main_np.3 rename to lib/libpthread/pthread_main_np.3 diff --git a/lib/libc_r/man/pthread_multi_np.3 b/lib/libpthread/pthread_multi_np.3 similarity index 100% rename from lib/libc_r/man/pthread_multi_np.3 rename to lib/libpthread/pthread_multi_np.3 diff --git a/lib/libc_r/man/pthread_mutex_destroy.3 b/lib/libpthread/pthread_mutex_destroy.3 similarity index 100% rename from lib/libc_r/man/pthread_mutex_destroy.3 rename to lib/libpthread/pthread_mutex_destroy.3 diff --git a/lib/libc_r/man/pthread_mutex_init.3 b/lib/libpthread/pthread_mutex_init.3 similarity index 100% rename from lib/libc_r/man/pthread_mutex_init.3 rename to lib/libpthread/pthread_mutex_init.3 diff --git a/lib/libc_r/man/pthread_mutex_lock.3 b/lib/libpthread/pthread_mutex_lock.3 similarity index 100% rename from lib/libc_r/man/pthread_mutex_lock.3 rename to lib/libpthread/pthread_mutex_lock.3 diff --git a/lib/libc_r/man/pthread_mutex_trylock.3 b/lib/libpthread/pthread_mutex_trylock.3 similarity index 100% rename from lib/libc_r/man/pthread_mutex_trylock.3 rename to lib/libpthread/pthread_mutex_trylock.3 diff --git a/lib/libc_r/man/pthread_mutex_unlock.3 b/lib/libpthread/pthread_mutex_unlock.3 similarity index 100% rename from lib/libc_r/man/pthread_mutex_unlock.3 rename to lib/libpthread/pthread_mutex_unlock.3 diff --git a/lib/libc_r/man/pthread_mutexattr.3 b/lib/libpthread/pthread_mutexattr.3 similarity index 100% rename from lib/libc_r/man/pthread_mutexattr.3 rename to lib/libpthread/pthread_mutexattr.3 diff --git a/lib/libc_r/man/pthread_mutexattr_getkind_np.3 b/lib/libpthread/pthread_mutexattr_getkind_np.3 similarity index 100% rename from lib/libc_r/man/pthread_mutexattr_getkind_np.3 rename to lib/libpthread/pthread_mutexattr_getkind_np.3 diff --git a/lib/libc_r/man/pthread_once.3 b/lib/libpthread/pthread_once.3 similarity index 100% rename from lib/libc_r/man/pthread_once.3 rename to lib/libpthread/pthread_once.3 diff --git a/lib/libc_r/man/pthread_resume_all_np.3 b/lib/libpthread/pthread_resume_all_np.3 similarity index 100% rename from lib/libc_r/man/pthread_resume_all_np.3 rename to lib/libpthread/pthread_resume_all_np.3 diff --git a/lib/libc_r/man/pthread_resume_np.3 b/lib/libpthread/pthread_resume_np.3 similarity index 100% rename from lib/libc_r/man/pthread_resume_np.3 rename to lib/libpthread/pthread_resume_np.3 diff --git a/lib/libc_r/man/pthread_rwlock_destroy.3 b/lib/libpthread/pthread_rwlock_destroy.3 similarity index 100% rename from lib/libc_r/man/pthread_rwlock_destroy.3 rename to lib/libpthread/pthread_rwlock_destroy.3 diff --git a/lib/libc_r/man/pthread_rwlock_init.3 b/lib/libpthread/pthread_rwlock_init.3 similarity index 100% rename from lib/libc_r/man/pthread_rwlock_init.3 rename to lib/libpthread/pthread_rwlock_init.3 diff --git a/lib/libc_r/man/pthread_rwlock_rdlock.3 b/lib/libpthread/pthread_rwlock_rdlock.3 similarity index 100% rename from lib/libc_r/man/pthread_rwlock_rdlock.3 rename to lib/libpthread/pthread_rwlock_rdlock.3 diff --git a/lib/libc_r/man/pthread_rwlock_unlock.3 b/lib/libpthread/pthread_rwlock_unlock.3 similarity index 100% rename from lib/libc_r/man/pthread_rwlock_unlock.3 rename to lib/libpthread/pthread_rwlock_unlock.3 diff --git a/lib/libc_r/man/pthread_rwlock_wrlock.3 b/lib/libpthread/pthread_rwlock_wrlock.3 similarity index 100% rename from lib/libc_r/man/pthread_rwlock_wrlock.3 rename to lib/libpthread/pthread_rwlock_wrlock.3 diff --git a/lib/libc_r/man/pthread_rwlockattr_destroy.3 b/lib/libpthread/pthread_rwlockattr_destroy.3 similarity index 100% rename from lib/libc_r/man/pthread_rwlockattr_destroy.3 rename to lib/libpthread/pthread_rwlockattr_destroy.3 diff --git a/lib/libc_r/man/pthread_rwlockattr_getpshared.3 b/lib/libpthread/pthread_rwlockattr_getpshared.3 similarity index 100% rename from lib/libc_r/man/pthread_rwlockattr_getpshared.3 rename to lib/libpthread/pthread_rwlockattr_getpshared.3 diff --git a/lib/libc_r/man/pthread_rwlockattr_init.3 b/lib/libpthread/pthread_rwlockattr_init.3 similarity index 100% rename from lib/libc_r/man/pthread_rwlockattr_init.3 rename to lib/libpthread/pthread_rwlockattr_init.3 diff --git a/lib/libc_r/man/pthread_rwlockattr_setpshared.3 b/lib/libpthread/pthread_rwlockattr_setpshared.3 similarity index 100% rename from lib/libc_r/man/pthread_rwlockattr_setpshared.3 rename to lib/libpthread/pthread_rwlockattr_setpshared.3 diff --git a/lib/libc_r/man/pthread_schedparam.3 b/lib/libpthread/pthread_schedparam.3 similarity index 100% rename from lib/libc_r/man/pthread_schedparam.3 rename to lib/libpthread/pthread_schedparam.3 diff --git a/lib/libc_r/man/pthread_self.3 b/lib/libpthread/pthread_self.3 similarity index 100% rename from lib/libc_r/man/pthread_self.3 rename to lib/libpthread/pthread_self.3 diff --git a/lib/libc_r/man/pthread_set_name_np.3 b/lib/libpthread/pthread_set_name_np.3 similarity index 100% rename from lib/libc_r/man/pthread_set_name_np.3 rename to lib/libpthread/pthread_set_name_np.3 diff --git a/lib/libc_r/man/pthread_setspecific.3 b/lib/libpthread/pthread_setspecific.3 similarity index 100% rename from lib/libc_r/man/pthread_setspecific.3 rename to lib/libpthread/pthread_setspecific.3 diff --git a/lib/libc_r/man/pthread_sigmask.3 b/lib/libpthread/pthread_sigmask.3 similarity index 100% rename from lib/libc_r/man/pthread_sigmask.3 rename to lib/libpthread/pthread_sigmask.3 diff --git a/lib/libc_r/man/pthread_suspend_all_np.3 b/lib/libpthread/pthread_suspend_all_np.3 similarity index 100% rename from lib/libc_r/man/pthread_suspend_all_np.3 rename to lib/libpthread/pthread_suspend_all_np.3 diff --git a/lib/libc_r/man/pthread_suspend_np.3 b/lib/libpthread/pthread_suspend_np.3 similarity index 100% rename from lib/libc_r/man/pthread_suspend_np.3 rename to lib/libpthread/pthread_suspend_np.3 diff --git a/lib/libc_r/man/pthread_switch_add_np.3 b/lib/libpthread/pthread_switch_add_np.3 similarity index 100% rename from lib/libc_r/man/pthread_switch_add_np.3 rename to lib/libpthread/pthread_switch_add_np.3 diff --git a/lib/libc_r/man/pthread_testcancel.3 b/lib/libpthread/pthread_testcancel.3 similarity index 100% rename from lib/libc_r/man/pthread_testcancel.3 rename to lib/libpthread/pthread_testcancel.3 diff --git a/lib/libc_r/man/sem_destroy.3 b/lib/libpthread/sem_destroy.3 similarity index 100% rename from lib/libc_r/man/sem_destroy.3 rename to lib/libpthread/sem_destroy.3 diff --git a/lib/libc_r/man/sem_getvalue.3 b/lib/libpthread/sem_getvalue.3 similarity index 100% rename from lib/libc_r/man/sem_getvalue.3 rename to lib/libpthread/sem_getvalue.3 diff --git a/lib/libc_r/man/sem_init.3 b/lib/libpthread/sem_init.3 similarity index 100% rename from lib/libc_r/man/sem_init.3 rename to lib/libpthread/sem_init.3 diff --git a/lib/libc_r/man/sem_open.3 b/lib/libpthread/sem_open.3 similarity index 100% rename from lib/libc_r/man/sem_open.3 rename to lib/libpthread/sem_open.3 diff --git a/lib/libc_r/man/sem_post.3 b/lib/libpthread/sem_post.3 similarity index 100% rename from lib/libc_r/man/sem_post.3 rename to lib/libpthread/sem_post.3 diff --git a/lib/libc_r/man/sem_wait.3 b/lib/libpthread/sem_wait.3 similarity index 100% rename from lib/libc_r/man/sem_wait.3 rename to lib/libpthread/sem_wait.3 diff --git a/lib/libc_r/man/sigwait.3 b/lib/libpthread/sigwait.3 similarity index 100% rename from lib/libc_r/man/sigwait.3 rename to lib/libpthread/sigwait.3 -- 2.11.4.GIT