From owner-cvs-all@FreeBSD.ORG Thu Apr 17 22:02:40 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 8539437B401; Thu, 17 Apr 2003 22:02:40 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1D79843FB1; Thu, 17 Apr 2003 22:02:40 -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 h3I52d0U023807; Thu, 17 Apr 2003 22:02:39 -0700 (PDT) (envelope-from deischen@repoman.freebsd.org) Received: (from deischen@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h3I52ddc023806; Thu, 17 Apr 2003 22:02:39 -0700 (PDT) Message-Id: <200304180502.h3I52ddc023806@repoman.freebsd.org> From: Daniel Eischen Date: Thu, 17 Apr 2003 22:02:39 -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/sys Makefile.inc lock.c lock.h thr_error.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 05:02:41 -0000 deischen 2003/04/17 22:02:39 PDT FreeBSD src repository Modified files: lib/libpthread/sys Makefile.inc thr_error.c Added files: lib/libpthread/sys lock.c lock.h Log: Add FIFO queueing locking operations based on atomic swap. Modify thread errno for the new libpthread changes. Reviewed by: davidxu Revision Changes Path 1.13 +2 -1 src/lib/libpthread/sys/Makefile.inc 1.1 +268 -0 src/lib/libpthread/sys/lock.c (new) 1.1 +89 -0 src/lib/libpthread/sys/lock.h (new) 1.6 +11 -6 src/lib/libpthread/sys/thr_error.c