diff options
| author | Jason Evans <jasone@FreeBSD.org> | 2000-07-18 00:35:46 +0000 |
|---|---|---|
| committer | Jason Evans <jasone@FreeBSD.org> | 2000-07-18 00:35:46 +0000 |
| commit | 6b579a7276fdb815e878a6a5396d5945b6a41d67 (patch) | |
| tree | b2302af0090e9dc19a9d948a7525d68b223a9ebe /lib | |
| parent | 4c1a5592008248115dc261d54b1323e62e052052 (diff) | |
Notes
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/libc_r/man/Makefile.inc | 47 | ||||
| -rw-r--r-- | lib/libc_r/man/sem_getvalue.3 | 4 | ||||
| -rw-r--r-- | lib/libc_r/man/sem_init.3 | 6 | ||||
| -rw-r--r-- | lib/libc_r/man/sem_post.3 | 4 |
4 files changed, 50 insertions, 11 deletions
diff --git a/lib/libc_r/man/Makefile.inc b/lib/libc_r/man/Makefile.inc index cba81ca86e2d..9cc74d750d2a 100644 --- a/lib/libc_r/man/Makefile.inc +++ b/lib/libc_r/man/Makefile.inc @@ -4,9 +4,11 @@ .PATH: ${.CURDIR}/man -MAN3+= pthread_cancel.3 \ +MAN3+= pthread_attr.3 \ + pthread_cancel.3 \ pthread_cleanup_pop.3 \ pthread_cleanup_push.3 \ + pthread_condattr.3 \ pthread_cond_broadcast.3 \ pthread_cond_destroy.3 \ pthread_cond_init.3 \ @@ -21,6 +23,8 @@ MAN3+= pthread_cancel.3 \ pthread_join.3 \ pthread_key_create.3 \ pthread_key_delete.3 \ + pthread_kill.3 \ + pthread_mutexattr.3 \ pthread_mutex_destroy.3 \ pthread_mutex_init.3 \ pthread_mutex_lock.3 \ @@ -36,20 +40,55 @@ MAN3+= pthread_cancel.3 \ pthread_rwlockattr_getpshared.3 \ pthread_rwlockattr_init.3 \ pthread_rwlockattr_setpshared.3 \ + pthread_schedparam.3 \ pthread_self.3 \ pthread_setspecific.3 \ + pthread_sigmask.3 \ pthread_testcancel.3 \ sem_destroy.3 \ sem_getvalue.3 \ sem_init.3 \ sem_open.3 \ sem_post.3 \ - sem_wait.3 + sem_wait.3 \ + sigwait.3 -MLINKS+= pthread_cancel.3 pthread_getcancelstate.3 \ - pthread_cancel.3 pthread_setcancelstate.3 \ +MLINKS+= \ + pthread_attr.3 pthread_attr_destroy.3 \ + pthread_attr.3 pthread_attr_getdetachstate.3 \ + pthread_attr.3 pthread_attr_getinheritsched.3 \ + pthread_attr.3 pthread_attr_getschedparam.3 \ + pthread_attr.3 pthread_attr_getschedpolicy.3 \ + pthread_attr.3 pthread_attr_getscope.3 \ + pthread_attr.3 pthread_attr_getstackaddr.3 \ + pthread_attr.3 pthread_attr_getstacksize.3 \ + pthread_attr.3 pthread_attr_init.3 \ + pthread_attr.3 pthread_attr_setdetachstate.3 \ + pthread_attr.3 pthread_attr_setinheritsched.3 \ + pthread_attr.3 pthread_attr_setschedparam.3 \ + pthread_attr.3 pthread_attr_setschedpolicy.3 \ + pthread_attr.3 pthread_attr_setscope.3 \ + pthread_attr.3 pthread_attr_setstackaddr.3 \ + pthread_attr.3 pthread_attr_setstacksize.3 \ + pthread_condattr.3 pthread_condattr_init.3 \ + pthread_condattr.3 pthread_condattr_destroy.3 \ + pthread_mutexattr.3 pthread_mutexattr_init.3 \ + pthread_mutexattr.3 pthread_mutexattr_destroy.3 \ + pthread_mutexattr.3 pthread_mutexattr_getprioceiling.3 \ + pthread_mutexattr.3 pthread_mutexattr_getprotocol.3 \ + pthread_mutexattr.3 pthread_mutexattr_getpshared.3 \ + pthread_mutexattr.3 pthread_mutexattr_gettype.3 \ + pthread_mutexattr.3 pthread_mutexattr_setprioceiling.3 \ + pthread_mutexattr.3 pthread_mutexattr_setprotocol.3 \ + pthread_mutexattr.3 pthread_mutexattr_setpshared.3 \ + pthread_mutexattr.3 pthread_mutexattr_settype.3 \ pthread_rwlock_rdlock.3 pthread_rwlock_tryrdlock.3 \ pthread_rwlock_wrlock.3 pthread_rwlock_trywrlock.3 \ + pthread_schedparam.3 pthread_getschedparam.3 \ + pthread_schedparam.3 pthread_setschedparam.3 \ + pthread_testcancel.3 pthread_getcancelstate.3 \ + pthread_testcancel.3 pthread_setcancelstate.3 \ + pthread_testcancel.3 pthread_setcanceltype.3 \ sem_open.3 sem_close.3 \ sem_open.3 sem_unlink.3 \ sem_wait.3 sem_trywait.3 diff --git a/lib/libc_r/man/sem_getvalue.3 b/lib/libc_r/man/sem_getvalue.3 index bc71e4d6c3e0..5f59b06aa4f2 100644 --- a/lib/libc_r/man/sem_getvalue.3 +++ b/lib/libc_r/man/sem_getvalue.3 @@ -65,8 +65,8 @@ points to an invalid semaphore. .El .Sh SEE ALSO .Xr sem_post 3 , -.Xr sem_wait 3 , -.Xr sem_trywait 3 +.Xr sem_trywait 3 , +.Xr sem_wait 3 .Sh STANDARDS .Fn sem_getvalue conforms to ISO/IEC 9945-1 ANSI/IEEE diff --git a/lib/libc_r/man/sem_init.3 b/lib/libc_r/man/sem_init.3 index 8abab14f0f11..b48cca17a302 100644 --- a/lib/libc_r/man/sem_init.3 +++ b/lib/libc_r/man/sem_init.3 @@ -82,10 +82,10 @@ Memory allocation error. Unable to initialize a shared semaphore. .El .Sh SEE ALSO -.Xr sem_wait 3 , -.Xr sem_trywait 3 , +.Xr sem_destroy 3 , .Xr sem_post 3 , -.Xr sem_destroy 3 +.Xr sem_trywait 3 , +.Xr sem_wait 3 .Sh STANDARDS .Fn sem_init conforms to ISO/IEC 9945-1 ANSI/IEEE diff --git a/lib/libc_r/man/sem_post.3 b/lib/libc_r/man/sem_post.3 index ee8d7e56137f..e877933250fd 100644 --- a/lib/libc_r/man/sem_post.3 +++ b/lib/libc_r/man/sem_post.3 @@ -64,8 +64,8 @@ will fail if: points to an invalid semaphore. .El .Sh SEE ALSO -.Xr sem_wait 3 , -.Xr sem_trywait 3 +.Xr sem_trywait 3 , +.Xr sem_wait 3 .Sh STANDARDS .Fn sem_post conforms to ISO/IEC 9945-1 ANSI/IEEE |
