]> git.saurik.com Git - apple/libc.git/blame - pthreads/Makefile.inc
Libc-498.1.1.tar.gz
[apple/libc.git] / pthreads / Makefile.inc
CommitLineData
224c7076 1.ifnmake autopatch
9385eb3d
A
2.if exists(${.CURDIR}/${MACHINE_ARCH}/pthreads/Makefile.inc)
3.include "${.CURDIR}/${MACHINE_ARCH}/pthreads/Makefile.inc"
4.endif
224c7076 5.endif # !autopatch
9385eb3d 6
59e0d9fe
A
7.PATH: ${.CURDIR}/pthreads
8
224c7076
A
9CFLAGS += -I${.CURDIR}/pthreads
10
11MISRCS += pthread_cancelable.c pthread_cond.c pthread_tsd.c pthread.c \
12 pthread_mutex.c thread_setup.c stack.s pthread_rwlock.c
13
14${SYMROOT}/plockstat.h: ${.CURDIR}/pthreads/plockstat.d
15 dtrace -o ${.TARGET} -C -h -s ${.ALLSRC}
16
17.for _src in pthread_cond.c pthread_mutex.c pthread_rwlock.c
18CFLAGS-${_src} += -I${SYMROOT}
19${_src:R}.So ${_src:R}.po ${_src:R}.do ${_src:R}.o: ${SYMROOT}/plockstat.h
20.endfor
5b2abdfb
A
21
22PTHREADS_INSTHDRS += pthread.h pthread_impl.h sched.h
23PTHREADS_INSTHDRS := ${PTHREADS_INSTHDRS:S/^/${.CURDIR}\/pthreads\//}
24INSTHDRS += ${PTHREADS_INSTHDRS}
25
224c7076
A
26PRIV_INSTHDRS += ${.CURDIR}/pthreads/pthread_machdep.h
27LOCALHDRS += ${.CURDIR}/pthreads/pthread_workqueue.h
28
29LEGACYSRCS += pthread.c pthread_cancelable.c pthread_cond.c pthread_mutex.c pthread_rwlock.c
30CANCELABLESRCS += pthread_cancelable.c
31
32# thread_setup.c can only compile with __DARWIN_UNIX03=0 (for ppc64) because
33# the structure field names are renamed with __ prefix when __DARWIN_UNIX03=1.
34# If thread_setup.c ever needs to build variant, this will have to be fix
35# properly
36CFLAGS-thread_setup.c = -U__DARWIN_UNIX03 -D__DARWIN_UNIX03=0
37
38# set the LIBC_ALIAS_* macros so we can decorate the symbol independent
39# of other macro settings
40CFLAGS-pthread.c += -DLIBC_ALIAS_PTHREAD_CANCEL -DLIBC_ALIAS_PTHREAD_SETCANCELSTATE -DLIBC_ALIAS_PTHREAD_SETCANCELTYPE -DLIBC_ALIAS_PTHREAD_SIGMASK -DLIBC_ALIAS_PTHREAD_TESTCANCEL
41CFLAGS-pthread_cancelable.c += -DLIBC_ALIAS_PTHREAD_COND_TIMEDWAIT -DLIBC_ALIAS_PTHREAD_COND_WAIT -DLIBC_ALIAS_PTHREAD_JOIN -DLIBC_ALIAS_SIGWAIT
42CFLAGS-pthread_cond.c += -DLIBC_ALIAS_PTHREAD_COND_INIT
43CFLAGS-pthread_mutex.c += -DLIBC_ALIAS_PTHREAD_MUTEXATTR_DESTROY
44CFLAGS-pthread_rwlock.c += -DLIBC_ALIAS_PTHREAD_RWLOCK_DESTROY -DLIBC_ALIAS_PTHREAD_RWLOCK_INIT -DLIBC_ALIAS_PTHREAD_RWLOCK_RDLOCK -DLIBC_ALIAS_PTHREAD_RWLOCK_TRYRDLOCK -DLIBC_ALIAS_PTHREAD_RWLOCK_TRYWRLOCK -DLIBC_ALIAS_PTHREAD_RWLOCK_UNLOCK -DLIBC_ALIAS_PTHREAD_RWLOCK_WRLOCK
45
46STRIP_HDRS += pthread.h
3d9156a7 47
5b2abdfb 48.if ${LIB} == "c"
3d9156a7 49MAN3+= pthread.3 pthread_atfork.3 pthread_attr.3 pthread_cancel.3 \
5b2abdfb
A
50 pthread_cleanup_pop.3 pthread_cleanup_push.3 \
51 pthread_cond_broadcast.3 pthread_cond_destroy.3 \
52 pthread_cond_init.3 pthread_cond_signal.3 \
53 pthread_cond_timedwait.3 pthread_cond_wait.3 \
54 pthread_create.3 pthread_detach.3 \
55 pthread_equal.3 pthread_exit.3 \
56 pthread_getschedparam.3 pthread_getspecific.3 \
57 pthread_join.3 pthread_key_create.3 \
58 pthread_key_delete.3 pthread_mutex_destroy.3 \
59 pthread_mutex_init.3 pthread_mutex_lock.3 \
60 pthread_mutex_trylock.3 pthread_mutex_unlock.3 \
61 pthread_mutexattr.3 pthread_once.3 \
62 pthread_self.3 pthread_setcancelstate.3 \
63 pthread_setspecific.3 pthread_condattr.3 \
64 pthread_rwlock_destroy.3 pthread_rwlock_init.3 \
65 pthread_rwlock_rdlock.3 pthread_rwlock_unlock.3 \
66 pthread_rwlock_wrlock.3 pthread_rwlockattr_destroy.3 \
67 pthread_rwlockattr_getpshared.3 pthread_rwlockattr_init.3 \
68 pthread_rwlockattr_setpshared.3
69
224c7076
A
70MLINKS+= pthread_attr.3 pthread_attr_destroy.3 \
71 pthread_attr.3 pthread_attr_getdetachstate.3 \
72 pthread_attr.3 pthread_attr_getinheritsched.3 \
73 pthread_attr.3 pthread_attr_getschedparam.3 \
74 pthread_attr.3 pthread_attr_getschedpolicy.3 \
75 pthread_attr.3 pthread_attr_getscope.3 \
76 pthread_attr.3 pthread_attr_getstackaddr.3 \
77 pthread_attr.3 pthread_attr_getstacksize.3 \
78 pthread_attr.3 pthread_attr_init.3 \
79 pthread_attr.3 pthread_attr_setdetachstate.3 \
80 pthread_attr.3 pthread_attr_setinheritsched.3 \
81 pthread_attr.3 pthread_attr_setschedparam.3 \
82 pthread_attr.3 pthread_attr_setschedpolicy.3 \
83 pthread_attr.3 pthread_attr_setscope.3 \
84 pthread_attr.3 pthread_attr_setstackaddr.3 \
85 pthread_attr.3 pthread_attr_setstacksize.3
86
87MLINKS+= pthread_getschedparam.3 pthread_setschedparam.3
88
89MLINKS+= pthread_mutexattr.3 pthread_mutexattr_destroy.3 \
90 pthread_mutexattr.3 pthread_mutexattr_getprioceiling.3 \
91 pthread_mutexattr.3 pthread_mutexattr_getprotocol.3 \
92 pthread_mutexattr.3 pthread_mutexattr_gettype.3 \
93 pthread_mutexattr.3 pthread_mutexattr_init.3 \
94 pthread_mutexattr.3 pthread_mutexattr_setprioceiling.3 \
95 pthread_mutexattr.3 pthread_mutexattr_setprotocol.3 \
96 pthread_mutexattr.3 pthread_mutexattr_settype.3
97
98MLINKS+= pthread_setcancelstate.3 pthread_setcanceltype.3 \
99 pthread_setcancelstate.3 pthread_testcancel.3
100
101MLINKS+= pthread_condattr.3 pthread_condattr_destroy.3 \
102 pthread_condattr.3 pthread_condattr_init.3
103
104MLINKS+= pthread_rwlock_rdlock.3 pthread_rwlock_tryrdlock.3
105
106MLINKS+= pthread_rwlock_wrlock.3 pthread_rwlock_trywrlock.3
5b2abdfb
A
107
108.endif
109
110