cvs commit: src/include pthread.h src/lib/libpthread pthread.map
src/lib/libpthread/thread Makefile.inc thr_barrier.c
thr_barrierattr.c thr_kern.c thr_mutex.c thr_private.h
David Xu
davidxu at FreeBSD.org
Thu Sep 4 07:06:48 PDT 2003
davidxu 2003/09/04 07:06:43 PDT
FreeBSD src repository
Modified files:
include pthread.h
lib/libpthread pthread.map
lib/libpthread/thread Makefile.inc thr_kern.c thr_mutex.c
thr_private.h
Added files:
lib/libpthread/thread thr_barrier.c thr_barrierattr.c
Log:
Add code to support barrier synchronous object and implement
pthread_mutex_timedlock().
Reviewed by: deischen
Revision Changes Path
1.29 +16 -0 src/include/pthread.h
1.4 +17 -0 src/lib/libpthread/pthread.map
1.43 +2 -0 src/lib/libpthread/thread/Makefile.inc
1.1 +122 -0 src/lib/libpthread/thread/thr_barrier.c (new)
1.1 +93 -0 src/lib/libpthread/thread/thr_barrierattr.c (new)
1.93 +5 -2 src/lib/libpthread/thread/thr_kern.c
1.41 +112 -4 src/lib/libpthread/thread/thr_mutex.c
1.99 +12 -0 src/lib/libpthread/thread/thr_private.h
More information about the cvs-src
mailing list