diff options
author | jasone <jasone@FreeBSD.org> | 2000-02-16 19:31:53 +0000 |
---|---|---|
committer | jasone <jasone@FreeBSD.org> | 2000-02-16 19:31:53 +0000 |
commit | 940003aae4b377da53e62c8838831e666a2ed6ba (patch) | |
tree | 1351093952e1b2b320b3cbacd06d92cc9d46f07c /lib/libc_r/man/Makefile.inc | |
parent | 48146806a14e6fb2abfc5602a9d9e6d787f44076 (diff) | |
download | FreeBSD-src-940003aae4b377da53e62c8838831e666a2ed6ba.zip FreeBSD-src-940003aae4b377da53e62c8838831e666a2ed6ba.tar.gz |
Add man pages for the sem_*() functions.
Approved by: jkh
Diffstat (limited to 'lib/libc_r/man/Makefile.inc')
-rw-r--r-- | lib/libc_r/man/Makefile.inc | 17 |
1 files changed, 13 insertions, 4 deletions
diff --git a/lib/libc_r/man/Makefile.inc b/lib/libc_r/man/Makefile.inc index b4c9370..fbcbd4e 100644 --- a/lib/libc_r/man/Makefile.inc +++ b/lib/libc_r/man/Makefile.inc @@ -4,7 +4,8 @@ .PATH: ${.CURDIR}/man -MAN3+= pthread_cleanup_pop.3 \ +MAN3+= pthread_cancel.3 \ + pthread_cleanup_pop.3 \ pthread_cleanup_push.3 \ pthread_cond_broadcast.3 \ pthread_cond_destroy.3 \ @@ -12,7 +13,6 @@ MAN3+= 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 \ @@ -38,7 +38,16 @@ MAN3+= pthread_cleanup_pop.3 \ pthread_rwlockattr_setpshared.3 \ pthread_self.3 \ pthread_setspecific.3 \ - pthread_testcancel.3 + pthread_testcancel.3 \ + sem_destroy.3 \ + sem_getvalue.3 \ + sem_init.3 \ + sem_open.3 \ + sem_post.3 \ + sem_wait.3 MLINKS+= pthread_cancel.3 pthread_setcancelstate.3 \ - pthread_cancel.3 pthread_getcancelstate.3 + pthread_cancel.3 pthread_getcancelstate.3 \ + sem_open.3 sem_close.3 \ + sem_open.3 sem_unlink.3 \ + sem_wait.3 sem_trywait.3 |