DragonFly commits List (threaded) for 2009-04
DragonFly BSD
DragonFly commits List (threaded) for 2009-04
[Date Prev][Date Next]  [Thread Prev][Thread Next]  [Date Index][Thread Index]

DragonFly-2.3.0.738.g610da master lib/libc_r Makefile lib/libc_r/man Makefile.inc pthread_attr.3 pthread_attr_get_np.3 pthread_attr_setcreatesuspend_np.3 pthread_cancel.3 pthread_cleanup_pop.3 pthread_cleanup_push.3 pthread_cond_broadcast.3 pthread_cond_destroy.3 pthread_cond_init.3 pthread_cond_signal.3 pthread_cond_timedwait.3 pthread_cond_wait.3 pthread_condattr.3 pthread_create.3 pthread_detach.3 pthread_equal.3 pthread_exit.3 pthread_getconcurrency.3 pthread_getspecific.3 pthread_join.3 pthread_key_create.3 pthread_key_delete.3 pthread_kill.3 pthread_main_np.3 pthread_multi_np.3 pthread_mutex_destroy.3 pthread_mutex_init.3 pthread_mutex_lock.3 pthread_mutex_trylock.3 pthread_mutex_unlock.3 pthread_mutexattr.3 pthread_mutexattr_getkind_np.3 pthread_once.3 pthread_resume_all_np.3 pthread_resume_np.3 pthread_rwlock_destroy.3 pthread_rwlock_init.3 pthread_rwlock_rdlock.3 pthread_rwlock_unlock.3 pthread_rwlock_wrlock.3 pthread_rwlockattr_destroy.3 pthread_rwlockattr_getpshared.3 pthread_rwlockattr_init.3 pthread_rwlockattr_setpshared.3 pthread_schedparam.3 pthread_self.3 pthread_set_name_np.3 pthread_setspecific.3 pthread_sigmask.3 pthread_suspend_all_np.3 pthread_suspend_np.3 pthread_switch_add_np.3 pthread_testcancel.3 sem_destroy.3 sem_getvalue.3 sem_init.3 sem_open.3 sem_post.3 sem_wait.3 sigwait.3 lib/libpthread Makefile pthread_attr.3 pthread_attr_get_np.3 pthread_attr_setcreatesuspend_np.3 pthread_cancel.3 pthread_cleanup_pop.3 pthread_cleanup_push.3 pthread_cond_broadcast.3 pthread_cond_destroy.3 pthread_cond_init.3 pthread_cond_signal.3 pthread_cond_timedwait.3 pthread_cond_wait.3 pthread_condattr.3 pthread_create.3 pthread_detach.3 pthread_equal.3 pthread_exit.3 pthread_getconcurrency.3 pthread_getspecific.3 pthread_join.3 pthread_key_create.3 pthread_key_delete.3 pthread_kill.3 pthread_main_np.3 pthread_multi_np.3 pthread_mutex_destroy.3 pthread_mutex_init.3 pthread_mutex_lock.3 pthread_mutex_trylock.3 pthread_mutex_unlock.3 pthread_mutexattr.3 pthread_mutexattr_getkind_np.3 pthread_once.3 pthread_resume_all_np.3 pthread_resume_np.3 pthread_rwlock_destroy.3 pthread_rwlock_init.3 pthread_rwlock_rdlock.3 pthread_rwlock_unlock.3 pthread_rwlock_wrlock.3 pthread_rwlockattr_destroy.3 pthread_rwlockattr_getpshared.3 pthread_rwlockattr_init.3 pthread_rwlockattr_setpshared.3 pthread_schedparam.3 pthread_self.3 pthread_set_name_np.3 pthread_setspecific.3 pthread_sigmask.3 pthread_suspend_all_np.3 pthread_suspend_np.3 pthread_switch_add_np.3 pthread_testcancel.3 sem_destroy.3 sem_getvalue.3 sem_init.3 sem_open.3 sem_post.3 sem_wait.3 sigwait.3


From: Sascha Wildner <swildner@xxxxxxxxxxxxxxxxxxxxxxx>
Date: Wed, 15 Apr 2009 04:08:52 -0700 (PDT)

commit 610da16028f13b18d2b6c6f1e661ded7a925a044
Author: Sascha Wildner <saw@online.de>
Date:   Wed Apr 15 13:07:13 2009 +0200

    Move pthread* manpages to lib/libpthread as they are not libc_r specific.

Summary of changes:
 lib/libc_r/Makefile                                |    1 -
 lib/libc_r/man/Makefile.inc                        |  110 --------------------
 lib/libpthread/Makefile                            |  104 ++++++++++++++++++
 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
 63 files changed, 104 insertions(+), 111 deletions(-)
 delete mode 100644 lib/libc_r/man/Makefile.inc
 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%)

http://gitweb.dragonflybsd.org/dragonfly.git/commitdiff/610da16028f13b18d2b6c6f1e661ded7a925a044


-- 
DragonFly BSD source repository



[Date Prev][Date Next]  [Thread Prev][Thread Next]  [Date Index][Thread Index]