diff options
author | 1999-01-18 00:00:31 +0000 | |
---|---|---|
committer | 1999-01-18 00:00:31 +0000 | |
commit | 30c314b9a29de15a697c38c6e411291fa7b46e75 (patch) | |
tree | f66daa9708d23a4b55906605bd1ace910a7fa89c /lib/libpthread/man | |
parent | show cancellation and exiting flags (diff) | |
download | wireguard-openbsd-30c314b9a29de15a697c38c6e411291fa7b46e75.tar.xz wireguard-openbsd-30c314b9a29de15a697c38c6e411291fa7b46e75.zip |
sync with previous changes
Diffstat (limited to 'lib/libpthread/man')
-rw-r--r-- | lib/libpthread/man/Makefile.inc | 15 |
1 files changed, 10 insertions, 5 deletions
diff --git a/lib/libpthread/man/Makefile.inc b/lib/libpthread/man/Makefile.inc index f3ff1ba09a2..f637c4a88cf 100644 --- a/lib/libpthread/man/Makefile.inc +++ b/lib/libpthread/man/Makefile.inc @@ -1,11 +1,12 @@ -# $Id: Makefile.inc,v 1.3 1998/11/20 15:15:06 d Exp $ -# $OpenBSD: Makefile.inc,v 1.3 1998/11/20 15:15:06 d Exp $ +# $Id: Makefile.inc,v 1.4 1999/01/18 00:00:32 d Exp $ +# $OpenBSD: Makefile.inc,v 1.4 1999/01/18 00:00:32 d Exp $ # POSIX thread man files .PATH: ${.CURDIR}/man -MAN+= pthread_cleanup_pop.3 \ +MAN+= pthread_atfork.3 \ + pthread_cleanup_pop.3 \ pthread_cleanup_push.3 \ pthread_cond_broadcast.3 \ pthread_cond_destroy.3 \ @@ -13,6 +14,7 @@ MAN+= pthread_cleanup_pop.3 \ pthread_cond_signal.3 \ pthread_cond_timedwait.3 \ pthread_cond_wait.3 \ + pthread_cancel.3 \ pthread_create.3 \ pthread_detach.3 \ pthread_equal.3 \ @@ -37,7 +39,8 @@ MAN+= pthread_cleanup_pop.3 \ pthread_rwlockattr_init.3 \ pthread_rwlockattr_setpshared.3 \ pthread_self.3 \ - pthread_setspecific.3 + pthread_setspecific.3 \ + pthread_testcancel.3 MAN+= pthreads.3 \ flockfile.3 \ @@ -46,5 +49,7 @@ MAN+= pthreads.3 \ MLINKS+=flockfile.3 funlockfile.3 \ flockfile.3 ftrylockfile.3 \ pthread_rwlock_rdlock.3 pthread_rwlock_tryrdlock.3 \ - pthread_rwlock_wrlock.3 pthread_rwlock_trywrlock.3 + pthread_rwlock_wrlock.3 pthread_rwlock_trywrlock.3 \ + pthread_cancel.3 pthread_setcancelstate.3 \ + pthread_cancel.3 pthread_getcancelstate.3 \ |