summaryrefslogtreecommitdiff
path: root/lib/libpthread
diff options
context:
space:
mode:
authorproven <proven@NetBSD.org>1994-02-07 21:59:27 +0000
committerproven <proven@NetBSD.org>1994-02-07 21:59:27 +0000
commit772f07b4a80856fc5f0155f4ae2e2e82015c80ae (patch)
tree1ab42f2f4260673a3477d70ed9bb6bcfd261460c /lib/libpthread
parent5cffad2151dfc4dadd75dccfad8bd30080557cbf (diff)
The latest pthread library.
Diffstat (limited to 'lib/libpthread')
-rw-r--r--lib/libpthread/Makefile3
-rw-r--r--lib/libpthread/README7
2 files changed, 5 insertions, 5 deletions
diff --git a/lib/libpthread/Makefile b/lib/libpthread/Makefile
index 788946225d4..85978519fe8 100644
--- a/lib/libpthread/Makefile
+++ b/lib/libpthread/Makefile
@@ -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
diff --git a/lib/libpthread/README b/lib/libpthread/README
index e77c79e887e..f546325d948 100644
--- a/lib/libpthread/README
+++ b/lib/libpthread/README
@@ -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.