DragonFly commits List (threaded) for 2009-07
[
Date Prev][
Date Next]
[
Thread Prev][
Thread Next]
[
Date Index][
Thread Index]
DragonFly-2.3.1.738.g15acf master lib/libpthread Makefile pthread.3 pthread_atfork.3 pthread_attr.3 pthread_attr_get_np.3 pthread_attr_setcreatesuspend_np.3 pthread_barrier_destroy.3 pthread_barrierattr.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_timedlock.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_timedrdlock.3 pthread_rwlock_timedwrlock.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_spin_init.3 pthread_spin_lock.3 pthread_suspend_all_np.3 pthread_suspend_np.3 pthread_switch_add_np.3 pthread_testcancel.3 pthread_yield.3
commit 15acf97d0475de2108f76813e989f0d1d4c8ad03
Author: Sascha Wildner <saw@online.de>
Date: Fri Jul 10 04:16:40 2009 +0200
pthread*.3: Sync the pthread manpages with FreeBSD.
Brings in some missing pages and some small fixes.
Reminded-by: hasso
Summary of changes:
lib/libpthread/Makefile | 28 ++++-
lib/libpthread/pthread.3 | 136 +++++++++++++--------
lib/libpthread/pthread_atfork.3 | 117 +++++++++++++++++
lib/libpthread/pthread_attr.3 | 35 ++++--
lib/libpthread/pthread_attr_get_np.3 | 7 +-
lib/libpthread/pthread_attr_setcreatesuspend_np.3 | 6 +-
lib/libpthread/pthread_barrier_destroy.3 | 140 +++++++++++++++++++++
lib/libpthread/pthread_barrierattr.3 | 135 ++++++++++++++++++++
lib/libpthread/pthread_cancel.3 | 14 ++-
lib/libpthread/pthread_cleanup_pop.3 | 10 +-
lib/libpthread/pthread_cleanup_push.3 | 10 +-
lib/libpthread/pthread_cond_broadcast.3 | 10 +-
lib/libpthread/pthread_cond_destroy.3 | 10 +-
lib/libpthread/pthread_cond_init.3 | 11 +-
lib/libpthread/pthread_cond_signal.3 | 10 +-
lib/libpthread/pthread_cond_timedwait.3 | 16 ++-
lib/libpthread/pthread_cond_wait.3 | 16 ++-
lib/libpthread/pthread_condattr.3 | 17 ++-
lib/libpthread/pthread_create.3 | 16 ++-
lib/libpthread/pthread_detach.3 | 16 ++-
lib/libpthread/pthread_equal.3 | 7 +-
lib/libpthread/pthread_exit.3 | 10 +-
lib/libpthread/pthread_getconcurrency.3 | 4 +-
lib/libpthread/pthread_getspecific.3 | 10 +-
lib/libpthread/pthread_join.3 | 12 +-
lib/libpthread/pthread_key_create.3 | 10 +-
lib/libpthread/pthread_key_delete.3 | 10 +-
lib/libpthread/pthread_kill.3 | 12 +-
lib/libpthread/pthread_main_np.3 | 4 +-
lib/libpthread/pthread_multi_np.3 | 4 +-
lib/libpthread/pthread_mutex_destroy.3 | 10 +-
lib/libpthread/pthread_mutex_init.3 | 13 +-
lib/libpthread/pthread_mutex_lock.3 | 10 +-
lib/libpthread/pthread_mutex_timedlock.3 | 103 +++++++++++++++
lib/libpthread/pthread_mutex_trylock.3 | 10 +-
lib/libpthread/pthread_mutex_unlock.3 | 10 +-
lib/libpthread/pthread_mutexattr.3 | 38 ++++--
lib/libpthread/pthread_mutexattr_getkind_np.3 | 4 +-
lib/libpthread/pthread_once.3 | 9 +-
lib/libpthread/pthread_resume_all_np.3 | 4 +-
lib/libpthread/pthread_resume_np.3 | 4 +-
lib/libpthread/pthread_rwlock_destroy.3 | 7 +-
lib/libpthread/pthread_rwlock_init.3 | 7 +-
lib/libpthread/pthread_rwlock_rdlock.3 | 15 ++-
lib/libpthread/pthread_rwlock_timedrdlock.3 | 118 +++++++++++++++++
lib/libpthread/pthread_rwlock_timedwrlock.3 | 108 ++++++++++++++++
lib/libpthread/pthread_rwlock_unlock.3 | 7 +-
lib/libpthread/pthread_rwlock_wrlock.3 | 14 ++-
lib/libpthread/pthread_rwlockattr_destroy.3 | 10 +-
lib/libpthread/pthread_rwlockattr_getpshared.3 | 18 ++-
lib/libpthread/pthread_rwlockattr_init.3 | 10 +-
lib/libpthread/pthread_rwlockattr_setpshared.3 | 20 ++--
lib/libpthread/pthread_schedparam.3 | 41 ++++---
lib/libpthread/pthread_self.3 | 7 +-
lib/libpthread/pthread_set_name_np.3 | 4 +-
lib/libpthread/pthread_setspecific.3 | 19 ++--
lib/libpthread/pthread_sigmask.3 | 12 +-
lib/libpthread/pthread_spin_init.3 | 122 ++++++++++++++++++
lib/libpthread/pthread_spin_lock.3 | 124 ++++++++++++++++++
lib/libpthread/pthread_suspend_all_np.3 | 4 +-
lib/libpthread/pthread_suspend_np.3 | 4 +-
lib/libpthread/pthread_switch_add_np.3 | 4 +-
lib/libpthread/pthread_testcancel.3 | 11 +-
lib/libpthread/pthread_yield.3 | 30 +++++
64 files changed, 1472 insertions(+), 302 deletions(-)
create mode 100644 lib/libpthread/pthread_atfork.3
create mode 100644 lib/libpthread/pthread_barrier_destroy.3
create mode 100644 lib/libpthread/pthread_barrierattr.3
create mode 100644 lib/libpthread/pthread_mutex_timedlock.3
create mode 100644 lib/libpthread/pthread_rwlock_timedrdlock.3
create mode 100644 lib/libpthread/pthread_rwlock_timedwrlock.3
create mode 100644 lib/libpthread/pthread_spin_init.3
create mode 100644 lib/libpthread/pthread_spin_lock.3
create mode 100644 lib/libpthread/pthread_yield.3
http://gitweb.dragonflybsd.org/dragonfly.git/commitdiff/15acf97d0475de2108f76813e989f0d1d4c8ad03
--
DragonFly BSD source repository
[
Date Prev][
Date Next]
[
Thread Prev][
Thread Next]
[
Date Index][
Thread Index]