7285bccf1a
eischen (Daniel Eischen) added wrappers to protect against cancled threads orphaning internal resources. the cancelability code is still a bit fuzzy but works for test programs of my own, OpenBSD's and some examples from ORA's books. add readdir_r to both libc and libc_r add some 'const' attributes to function parameters Reviewed by: eischen, jasone
45 lines
1.0 KiB
Makefile
45 lines
1.0 KiB
Makefile
# $FreeBSD$
|
|
|
|
# POSIX thread man files
|
|
|
|
.PATH: ${.CURDIR}/man
|
|
|
|
MAN3+= 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_cancel.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_rwlock_destroy.3 \
|
|
pthread_rwlock_init.3 \
|
|
pthread_rwlock_rdlock.3 \
|
|
pthread_rwlock_unlock.3 \
|
|
pthread_rwlock_wrlock.3 \
|
|
pthread_rwlockattr_destroy.3 \
|
|
pthread_rwlockattr_getpshared.3 \
|
|
pthread_rwlockattr_init.3 \
|
|
pthread_rwlockattr_setpshared.3 \
|
|
pthread_self.3 \
|
|
pthread_setspecific.3 \
|
|
pthread_testcancel.3
|
|
|
|
MLINKS+= pthread_cancel.3 pthread_setcancelstate.3 \
|
|
pthread_cancel.3 pthread_getcancelstate.3
|