diff options
author | David Leonard <d@cvs.openbsd.org> | 1998-08-27 09:01:31 +0000 |
---|---|---|
committer | David Leonard <d@cvs.openbsd.org> | 1998-08-27 09:01:31 +0000 |
commit | bedf96e763621a9b6fb71822bd95c454b95d9486 (patch) | |
tree | 22181d26ad362f92835d7d276b5a84d2eb9b042e /lib/libpthread/man/Makefile.inc | |
parent | 9f6a9b5b5b545cec5bad0c172212ede2256d4285 (diff) |
experimental threaded libc - kernel only
Diffstat (limited to 'lib/libpthread/man/Makefile.inc')
-rw-r--r-- | lib/libpthread/man/Makefile.inc | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/lib/libpthread/man/Makefile.inc b/lib/libpthread/man/Makefile.inc new file mode 100644 index 00000000000..2cae3f76800 --- /dev/null +++ b/lib/libpthread/man/Makefile.inc @@ -0,0 +1,39 @@ +# $Id: Makefile.inc,v 1.1 1998/08/27 09:00:33 d Exp $ +# $OpenBSD: Makefile.inc,v 1.1 1998/08/27 09:00:33 d Exp $ + +# POSIX thread man files + +.PATH: ${.CURDIR}/man + +MAN+= 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_create.3 \ + pthread_detach.3 \ + pthread_equal.3 \ + pthread_exit.3 \ + pthread_getspecific.3 \ + pthread_join.3 \ + pthread_key_create.3 \ + pthread_key_delete.3 \ + pthread_mutex_destroy.3 \ + pthread_mutex_init.3 \ + pthread_mutex_lock.3 \ + pthread_mutex_trylock.3 \ + pthread_mutex_unlock.3 \ + pthread_once.3 \ + pthread_self.3 \ + pthread_setspecific.3 + +MAN+= pthreads.3 \ + flockfile.3 \ + sigwait.3 + +MLINKS+=flockfile.3 funlockfile.3 \ + flockfile.3 ftrylockfile.3 + |