From owner-cvs-all@FreeBSD.ORG Tue Apr 29 14:03:35 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 036B537B404; Tue, 29 Apr 2003 14:03:35 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1E82743FA3; Tue, 29 Apr 2003 14:03:34 -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 h3TL3X0U064950; Tue, 29 Apr 2003 14:03:33 -0700 (PDT) (envelope-from deischen@repoman.freebsd.org) Received: (from deischen@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h3TL3Xlx064943; Tue, 29 Apr 2003 14:03:33 -0700 (PDT) Message-Id: <200304292103.h3TL3Xlx064943@repoman.freebsd.org> From: Daniel Eischen Date: Tue, 29 Apr 2003 14:03:33 -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/thread thr_init.c thr_sig.c thr_sigwait.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: Tue, 29 Apr 2003 21:03:36 -0000 deischen 2003/04/29 14:03:33 PDT FreeBSD src repository Modified files: lib/libpthread/thread thr_init.c thr_sig.c thr_sigwait.c Log: Create the thread signal lock as a KSE lock (as opposed to a thread lock). Better protect access to thread state while searching for threads to handle a signal. Better protect access to process pending signals while processing a thread in sigwait(). Submitted by: davidxu Revision Changes Path 1.50 +1 -1 src/lib/libpthread/thread/thr_init.c 1.48 +3 -3 src/lib/libpthread/thread/thr_sig.c 1.24 +19 -18 src/lib/libpthread/thread/thr_sigwait.c