The latest pthread library.

This commit is contained in:
proven 1994-02-07 21:59:27 +00:00
parent 5cffad2151
commit 772f07b4a8
2 changed files with 5 additions and 5 deletions

View File

@ -2,11 +2,12 @@
LIB=pthread
NOPIC= no
CPPFLAGS+= -g -DPTHREAD_KERNEL -I. -I${.CURDIR}/include -I${.CURDIR}/arch/${MACHINE}
CPPFLAGS+= -DPTHREAD_KERNEL -I. -I${.CURDIR}/include -I${.CURDIR}/arch/${MACHINE}
CFLAGS+= ${CPPFLAGS}
.include "${.CURDIR}/arch/${MACHINE}/Makefile.inc"
.include "${.CURDIR}/pthreads/Makefile.inc"
.include "${.CURDIR}/stdio/Makefile.inc"
all beforedepend: pthread

View File

@ -5,10 +5,11 @@ at the Winter 93 USENIX conference.
It is currently being designed and written by me, Chris Provenzano.
All bug, comments, and questions can be sent me at either
proven@athena.mit.edu or proven@sun-lamp.cs.berkeley.edu
Please don't send questions, bugs or patches to any of the NetBSD mailing lists.
PLEASE, don't send questions, bugs or patches to any of the *BSD* mailing lists.
Thanks goes to John Carr jfc@mit.edu for porting this to the IBM/RT,
and for his bug reports and fixes.
and for his bug reports and fixes, Greg Hudson and Mark Eichin for the
testing they've done, and all the others.
PORTING
One of the goals of this user space implementation of pthreads is that it
@ -34,8 +35,6 @@ files must be followed.
pthread.h should be included first (if it is to be included).
machdep.h should define size_t if the system doesn't define it already
stdio.h should not be included. It is included in pthread.h.
posix.h should be included last. This file is used to correct non
POSIX features, after everything else has been defined.