blob: 2cae3f768000190483aabfe1340f39964396864f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
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
|