From owner-cvs-src@FreeBSD.ORG Mon Mar 31 17:10:43 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 63BFD37B401; Mon, 31 Mar 2003 17:10:43 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 12ACE43F85; Mon, 31 Mar 2003 17:10:43 -0800 (PST) (envelope-from jeff@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 h311Ag0U049115; Mon, 31 Mar 2003 17:10:42 -0800 (PST) (envelope-from jeff@repoman.freebsd.org) Received: (from jeff@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h311AgXB049113; Mon, 31 Mar 2003 17:10:42 -0800 (PST) Message-Id: <200304010110.h311AgXB049113@repoman.freebsd.org> From: Jeff Roberson Date: Mon, 31 Mar 2003 17:10:42 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/kern kern_umtx.c src/sys/sys umtx.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Apr 2003 01:10:43 -0000 jeff 2003/03/31 17:10:42 PST FreeBSD src repository Added files: sys/kern kern_umtx.c sys/sys umtx.h Log: - Add an api for doing smp safe locks in userland. - umtx_lock() is defined as an inline in umtx.h. It tries to do an uncontested acquire of a lock which falls back to the _umtx_lock() system-call if that fails. - umtx_unlock() is also an inline which falls back to _umtx_unlock() if the uncontested unlock fails. - Locks are keyed off of the thr_id_t of the currently running thread which is currently just the pointer to the 'struct thread' in kernel. - _umtx_lock() uses the proc pointer to synchronize access to blocked thread queues which are stored in the first blocked thread. Revision Changes Path 1.1 +303 -0 src/sys/kern/kern_umtx.c (new) 1.1 +87 -0 src/sys/sys/umtx.h (new)