From owner-cvs-all@FreeBSD.ORG Fri Apr 18 00:09:45 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EDF0237B401; Fri, 18 Apr 2003 00:09:44 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 31EBA43FA3; Fri, 18 Apr 2003 00:09:44 -0700 (PDT) (envelope-from deischen@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h3I79i0U037932; Fri, 18 Apr 2003 00:09:44 -0700 (PDT) (envelope-from deischen@repoman.freebsd.org) Received: (from deischen@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h3I79hNY037931; Fri, 18 Apr 2003 00:09:43 -0700 (PDT) Message-Id: <200304180709.h3I79hNY037931@repoman.freebsd.org> From: Daniel Eischen Date: Fri, 18 Apr 2003 00:09:43 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libpthread Makefilesrc/lib/libpthread/arch/i386/i386 ksd.c thr_getcontext.S src/lib/libpthread/arch/i386/include atomic_ops.h ksd.h pthread_md.h src/lib/libpthread/sys lock.c lock.h src/lib/libpthread/thread thr_create.c thr_detach.c ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 18 Apr 2003 07:09:45 -0000 deischen 2003/04/18 00:09:43 PDT FreeBSD src repository Modified files: lib/libpthread Makefile lib/libpthread/arch/i386/i386 ksd.c thr_getcontext.S lib/libpthread/arch/i386/include atomic_ops.h ksd.h pthread_md.h lib/libpthread/sys lock.c lock.h lib/libpthread/thread thr_create.c thr_detach.c thr_find_thread.c thr_init.c thr_join.c thr_kern.c thr_priority_queue.c thr_private.h thr_resume_np.c thr_setschedparam.c thr_suspend_np.c Log: Sorry folks; I accidentally committed a patch from what I was working on a couple of days ago. This should be the most recent changes. Noticed by: davidxu Revision Changes Path 1.38 +1 -1 src/lib/libpthread/Makefile 1.2 +4 -4 src/lib/libpthread/arch/i386/i386/ksd.c 1.2 +1 -1 src/lib/libpthread/arch/i386/i386/thr_getcontext.S 1.2 +4 -4 src/lib/libpthread/arch/i386/include/atomic_ops.h 1.2 +3 -3 src/lib/libpthread/arch/i386/include/ksd.h 1.2 +0 -3 src/lib/libpthread/arch/i386/include/pthread_md.h 1.2 +1 -1 src/lib/libpthread/sys/lock.c 1.2 +1 -1 src/lib/libpthread/sys/lock.h 1.39 +7 -6 src/lib/libpthread/thread/thr_create.c 1.20 +38 -14 src/lib/libpthread/thread/thr_detach.c 1.10 +0 -9 src/lib/libpthread/thread/thr_find_thread.c 1.48 +3 -3 src/lib/libpthread/thread/thr_init.c 1.23 +20 -3 src/lib/libpthread/thread/thr_join.c 1.53 +176 -130 src/lib/libpthread/thread/thr_kern.c 1.13 +7 -0 src/lib/libpthread/thread/thr_priority_queue.c 1.80 +35 -10 src/lib/libpthread/thread/thr_private.h 1.16 +4 -1 src/lib/libpthread/thread/thr_resume_np.c 1.12 +7 -0 src/lib/libpthread/thread/thr_setschedparam.c 1.17 +9 -10 src/lib/libpthread/thread/thr_suspend_np.c