1c3caff3ff
pthread_once() moved to separate file. pthread_detach(), and pthread_join() routines added, and sleep now sleeps only the running thread not the process.
14 lines
284 B
Makefile
14 lines
284 B
Makefile
# from: @(#)Makefile.inc 5.6 (Berkeley) 6/4/91
|
|
|
|
# pthread sources
|
|
.PATH: ${.CURDIR}/pthreads
|
|
|
|
SRCS+= cond.c fd.c fd_kern.c fd_pipe.c file.c globals.c malloc.c mutex.c \
|
|
pthread.c pthread_attr.c queue.c signal.c pthread_join.c \
|
|
pthread_detach.c sleep.c
|
|
|
|
MAN2+=
|
|
|
|
MAN3+=
|
|
|