added Chris Provenzano's light-weight threading library.
authorAndrew Moore <alm@FreeBSD.org>
Sun, 19 Dec 1993 06:21:33 +0000 (06:21 +0000)
committerAndrew Moore <alm@FreeBSD.org>
Sun, 19 Dec 1993 06:21:33 +0000 (06:21 +0000)
commit90269d47546a1adf200aaac83ae20caf6ef9975f
tree07cce0293d2abc8055a75ecf2fcc06727c156c7c
parent9ac3792a6d1c4a5672dbc9d477b5a01c6f36d119
added Chris Provenzano's light-weight threading library.

from libpthread/README:
This pthread package is/will be based on the POSIX1003.4a Draft 7 pthread
standard, and Frank Mullers paper on signal handelling presented
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 [FreeBSD] mailing
lists.

Copyright (c) 1993 Chris Provenzano. All rights reserved.

This product includes software developed by the Univeristy of California,
Berkeley and its contributors.
33 files changed:
lib/Makefile
lib/libpthread/Makefile [new file with mode: 0644]
lib/libpthread/README [new file with mode: 0644]
lib/libpthread/arch/i386/Makefile.inc [new file with mode: 0644]
lib/libpthread/arch/i386/machdep.c [new file with mode: 0644]
lib/libpthread/arch/i386/machdep.h [new file with mode: 0644]
lib/libpthread/arch/i386/syscall.S [new file with mode: 0644]
lib/libpthread/include/Makefile.inc [new file with mode: 0644]
lib/libpthread/include/cond.h [new file with mode: 0644]
lib/libpthread/include/copyright.h [new file with mode: 0644]
lib/libpthread/include/engine.h [new file with mode: 0644]
lib/libpthread/include/fd.h [new file with mode: 0644]
lib/libpthread/include/fd_pipe.h [new file with mode: 0644]
lib/libpthread/include/kernel.h [new file with mode: 0644]
lib/libpthread/include/mutex.h [new file with mode: 0644]
lib/libpthread/include/posix.h [new file with mode: 0644]
lib/libpthread/include/pthread.h [new file with mode: 0644]
lib/libpthread/include/pthread_attr.h [new file with mode: 0644]
lib/libpthread/include/queue.h [new file with mode: 0644]
lib/libpthread/include/util.h [new file with mode: 0644]
lib/libpthread/pthreads/Makefile.inc [new file with mode: 0644]
lib/libpthread/pthreads/cond.c [new file with mode: 0644]
lib/libpthread/pthreads/fd.c [new file with mode: 0644]
lib/libpthread/pthreads/fd_kern.c [new file with mode: 0644]
lib/libpthread/pthreads/fd_pipe.c [new file with mode: 0644]
lib/libpthread/pthreads/file.c [new file with mode: 0644]
lib/libpthread/pthreads/globals.c [new file with mode: 0644]
lib/libpthread/pthreads/malloc.c [new file with mode: 0644]
lib/libpthread/pthreads/mutex.c [new file with mode: 0644]
lib/libpthread/pthreads/pthread.c [new file with mode: 0644]
lib/libpthread/pthreads/pthread_attr.c [new file with mode: 0644]
lib/libpthread/pthreads/queue.c [new file with mode: 0644]
lib/libpthread/pthreads/signal.c [new file with mode: 0644]